+ Reply to Thread
Results 1 to 10 of 10

words with repeat consonant

Hybrid View

makinmomb words with repeat consonant 04-05-2017, 10:26 AM
makinmomb Re: words with repeat... 04-05-2017, 10:27 AM
makinmomb Re: words with repeat... 04-05-2017, 10:28 AM
makinmomb Re: words with repeat... 04-05-2017, 10:31 AM
canapone Re: words with repeat... 04-05-2017, 10:53 AM
XOR LX Re: words with repeat... 04-05-2017, 11:01 AM
canapone Re: words with repeat... 04-05-2017, 11:04 AM
XOR LX Re: words with repeat... 04-05-2017, 11:12 AM
makinmomb Re: words with repeat... 04-05-2017, 11:33 PM
canapone Re: words with repeat... 04-06-2017, 02:38 AM
  1. #1
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    words with repeat consonant

    Babudom
    imbibed
    yabbied
    abduced
    beached
    debauch
    ichabod
    coccoid
    acceded
    caddice
    coached
    couched
    cockade
    medacca
    ecdemic
    comedic
    accoyed
    caddied
    adduced
    decided
    decoded
    deduced
    defaced

  2. #2
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: words with repeat consonant

    thats the raw data on a1 , i need a formula on b1 , to drag down , to find to repeats consonants , and then give result the consonant

  3. #3
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: words with repeat consonant

    Results will look as follows

    babudom bb
    imbibed bb
    yabbied bb
    abduced dd
    beached
    debauch
    ichabod
    coccoid cc
    acceded cc
    caddice cc
    coached cc
    couched cc
    cockade cc
    medacca cc
    ecdemic cc
    comedic cc
    accoyed cc
    caddied dd
    adduced dd
    decided dd
    decoded dd
    deduced dd
    defaced dd

  4. #4
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: words with repeat consonant

    Not sure how the formula will deal with these that has cc and dd

    acceded cc
    caddice cc

  5. #5
    Forum Expert
    Join Date
    12-03-2009
    Location
    Florence, Italy
    MS-Off Ver
    Excel 2019
    Posts
    1,796

    Re: words with repeat consonant

    Hi,

    a first approach a list of consonants in G1:G21



    =IFERROR(REPT(INDEX(G$1:G$21,AGGREGATE(15,6,ROW($1:$21)/ISNUMBER(SEARCH(G$1:G$21,A1,SEARCH(G$1:G$21,A1)+1)),1)),2),"")
    or to spot double couples of consonants

    =IFERROR(REPT(INDEX(G$1:G$21,AGGREGATE(15,6,ROW($1:$21)/ISNUMBER(SEARCH(G$1:G$21,A1,SEARCH(G$1:G$21,A1)+1)),1)),2),"")&" "&IFERROR(REPT(INDEX(G$1:G$21,AGGREGATE(15,6,ROW($1:$21)/ISNUMBER(SEARCH($G$1:$G$21,A1,SEARCH(G$1:G$21,A1)+1)),2)),2),"")

    Hope it helps
    Attached Files Attached Files
    Last edited by canapone; 04-05-2017 at 10:57 AM.
    -----------------------------------------------------

    At Excelforum, you can say "Thank you!" by clicking the star icon ("Add Reputation") below the post.

    Please, mark your thread [SOLVED] if you received your answer.

  6. #6
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: words with repeat consonant

    Hi makinmomb,

    Ciao canapone,

    =LOOKUP(1,0/(SEARCH(REPT({"";"b";"c";"d";"f";"g";"h";"j";"k";"l";"m";"n";"p";"q";"r";"s";"t";"v";"w";"x";"y";"z"}&"*",2),A1)),REPT({"";"b";"c";"d";"f";"g";"h";"j";"k";"l";"m";"n";"p";"q";"r";"s";"t";"v";"w";"x";"y";"z"},2))

    Regards
    Click * below if this answer helped

    Advanced Excel Techniques: http://excelxor.com/

  7. #7
    Forum Expert
    Join Date
    12-03-2009
    Location
    Florence, Italy
    MS-Off Ver
    Excel 2019
    Posts
    1,796

    Re: words with repeat consonant

    Hi XOX LX

    without using REPT (...shameless)

    =IFERROR(INDEX(G$1:G$21&G$1:G$21,AGGREGATE(15,6,ROW($1:$21)/ISNUMBER(SEARCH(G$1:G$21,A1,SEARCH(G$1:G$21,A1)+1)),1)),"")

    Just for fun.

  8. #8
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: words with repeat consonant

    Quote Originally Posted by canapone View Post
    without using REPT (...shameless)
    Nothing shameless about that, my friend!

    Quote Originally Posted by canapone View Post
    Just for fun.
    Excel's always "just for fun"!!

  9. #9
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2013 PRO PLUS
    Posts
    3,718

    Re: words with repeat consonant

    Canopone , works , just beyond perfect , thank you very much

  10. #10
    Forum Expert
    Join Date
    12-03-2009
    Location
    Florence, Italy
    MS-Off Ver
    Excel 2019
    Posts
    1,796

    Re: words with repeat consonant

    Hi,

    thanks for sharing feedback.

    You can simply add a third segment if you'd need to intercept third couple of consonants.

    Regards

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Count Instances of Repeat and Non-Repeat Dates
    By mgs in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-08-2015, 09:54 PM
  2. Replies: 3
    Last Post: 04-08-2014, 03:45 AM
  3. Replies: 4
    Last Post: 03-08-2014, 08:01 AM
  4. Transpose each word in sentence into individual cells/Count the repeat words...???
    By swade730 in forum Excel Programming / VBA / Macros
    Replies: 18
    Last Post: 12-21-2013, 02:38 PM
  5. [SOLVED] Splitting word list based on syllabic structure, CVC (consonant/vowel/consonant) etc
    By Jay Bee in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 10-23-2013, 10:36 AM
  6. [SOLVED] I type same words and it will not automatically repeat the word
    By K@Betts in forum Excel General
    Replies: 2
    Last Post: 01-23-2006, 02:15 PM
  7. Replies: 2
    Last Post: 08-24-2005, 12:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1