+ Reply to Thread
Results 1 to 14 of 14

Marking words like NEINEIS

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2019 PRO
    Posts
    3,626

    Marking words like NEINEIS

    I have word on a1 as follows

    NEINIES
    TESTING

    I want formula on b1 to do the follow
    check character 1 see if same with character 4
    check character 2 see if same with character 5
    check character 3 see if same with character 6

    If it does the work correctly expected results will be

    NEINIES MARK
    TESTING

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Marking words like NEINEIS

    a
    b
    c
    1
    neinies
    false
    b1: {=and(mid(a1, {1,2,3}, 1) = mid(a1, {4,5,6}, 1))}
    2
    testing
    false
    3
    abcabc
    true
    Entia non sunt multiplicanda sine necessitate

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

    Re: Marking words like NEINEIS

    Thank you very much shg it successfully quoted 66 words in the whole dictionary of 40,000 words

    AKEAKES
    ALFALFA
    ARAARAS
    ATAATAS
    ATLATLS
    BEEBEES
    BERBERE
    BERBERS
    BONBONS
    BOOBOOK
    BOOBOOS
    BOUBOUS
    BUIBUIS
    BULBULS
    CANCANS
    CHICHIS
    CHOCHOS
    DIKDIKS
    DOODOOS
    DUMDUMS
    ENTENTE
    FURFURS
    GRIGRIS
    GRUGRUS
    HUMHUMS
    JIGJIGS
    KAIKAIS
    KIEKIES
    KINKING
    KOEKOEA
    KUMKUMS
    LABLABS
    LOGLOGS
    MAOMAOS
    MOTMOTS
    MULMULL
    MULMULS
    MURMURS
    MUUMUUS
    NEINEIS
    PAWPAWS
    PIOPIOS
    PIUPIUS
    POMPOMS
    PREPREG
    PURPURA
    PURPURE
    SARSARS
    SEMSEMS
    SIKSIKS
    TARTARE
    TARTARS
    TAUTAUG
    THETHER
    TINTING
    TOETOES
    TOITOIS
    TSETSES
    TSKTSKS
    TUATUAS
    TZETZES
    TZITZIS
    TZITZIT
    WEEWEED
    WEEWEES
    ZOOZOOS

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Marking words like NEINEIS

    You're welcome.

  5. #5
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.86 for Mac MS 365
    Posts
    8,525

    Re: Marking words like NEINEIS

    looks like it is solved already but since I spent time working on it this is my solution, not as elegant as shg's though...
    =IF(LEFT(A1,1)=MID(A1,4,1),A1,IF(MID(A1,2,1)=MID(A1,5,1),A1,IF(MID(A1,3,1)=MID(A1,6,1),A1,"")))
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  6. #6
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2019 PRO
    Posts
    3,626

    Re: Marking words like NEINEIS

    Sambo I will keep that too since that of SHG was beyond professional , I can only understand yours

  7. #7
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Marking words like NEINEIS

    Passing thought..

    =LEFT(A1,3)=MID(A1,4,3)

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Marking words like NEINEIS

    Omg ...

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

    Re: Marking words like NEINEIS

    I was wondering if I can get words where letter 234 equals 567 ,
    use below word for testing since I am not sure it will pull any word
    out of 40,000 dictionary

    ATESTES

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Marking words like NEINEIS

    Can you not adapt the formula in post #7?

  11. #11
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.86 for Mac MS 365
    Posts
    8,525

    Re: Marking words like NEINEIS

    how about =IF(MID(A1,2,3)=MID(A1,5,3),TRUE,FALSE) or something to that effect.

    SHG, ha ha, that is all I did.
    and don't need the if then part as it will either be true or false anyway.
    Last edited by Sam Capricci; 03-29-2017 at 12:48 PM.

  12. #12
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Marking words like NEINEIS

    Copying Jason's approach try

    =MID(A1,2,3)=MID(A1,5,3)

    That would also allow longer words like ATESTESXYZ

    If you don't want that you could specify the string length too, e.g.

    =AND(MID(A1,2,3)=MID(A1,5,3),LEN(A1)=7)
    Audere est facere

  13. #13
    Forum Contributor
    Join Date
    01-04-2014
    Location
    East Africa
    MS-Off Ver
    MS OFFICE 2019 PRO
    Posts
    3,626

    Re: Marking words like NEINEIS

    Thankyou , daddylonglegs , it successfully 24 words

    ALFALFA
    BAZZAZZ
    BINGING
    CASEASE
    DINGING
    ENTENTE
    FIERIER
    HINGING
    KINGING
    MINGING
    NAYSAYS
    PAZZAZZ
    PINGING
    RINGING
    SARSARS
    SEMSEMS
    SIKSIKS
    SINGING
    TINGING
    TZITZIT
    UNSENSE
    VERSERS
    WINGING
    ZINGING

  14. #14
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Marking words like NEINEIS

    Quote Originally Posted by makinmomb View Post
    PAZZAZZ
    I think I tried to use that one in Scrabble once, I was banned for cheating

+ 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] Similar words marking
    By makinmomb in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 11-20-2016, 04:16 PM
  2. Marking a Chart
    By scottintexas in forum Excel Charting & Pivots
    Replies: 5
    Last Post: 04-20-2015, 04:51 PM
  3. [SOLVED] Marking Values
    By nav505 in forum Excel General
    Replies: 6
    Last Post: 02-23-2013, 01:56 PM
  4. marking duplicates
    By comp23 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-22-2012, 03:29 PM
  5. marking and counting only what I need
    By robertjtucker in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-29-2007, 10:20 AM
  6. Marking rows
    By Ragnar Midtskogen in forum Excel General
    Replies: 4
    Last Post: 10-02-2005, 12:05 PM
  7. Marking Checkbox from VBA
    By konpego in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-14-2005, 07:06 AM

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