+ Reply to Thread
Results 1 to 17 of 17

Plug Y if last 4 letters are Vowels otherwise leave blank

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

    Plug Y if last 4 letters are Vowels otherwise leave blank

    Please

    See file attached manually read and manually marked

    Required formula on f3 drag down to mark all words that have last 4 letters last as vowels
    Required formula on g3 drag down to mark all words that have last 3 letters last as vowels

    Find file attached with expected results

    Thank you
    Attached Files Attached Files
    Last edited by makinmomb; 03-23-2024 at 03:52 AM. Reason: Thank you

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,064

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    You are doing it AGAIN. An incomplete decription. Which column are we looking at A or E??? Why even include th eother one in your sample???
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Just a gentle reminder, now that you are back from your timeout, that any further thread duplication will result in a PERMANENT ban from this forum. Please think very carefully if you open any further threads.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,064

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Assuming the column was column A:

    =IF(SUM(--(MMULT(--(IFERROR(SEARCH({"A","E","I","O","U"},MID(RIGHT(A3,4),SEQUENCE(4),1)),"")=1),SEQUENCE(5))>0))=4,"Y","N")

    change the red 4 to 3 for the 3 last vowels. It may be an array formula in your excel version.
    Attached Files Attached Files

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Glenn - no SEQUENCE in Excel 2019.

  6. #6
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,064

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    No?? Oh well then:

    =IF(SUM(--(MMULT(--(IFERROR(SEARCH({"A","E","I","O","U"},MID(RIGHT(A3,4),ROW($1:$4),1)),"")=1),ROW($1:$5))>0))=4,"Y","N")
    changing the 4s to 3s.

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank


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

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Glenn got me correct , thank you

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

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Why does the formula no copy on additional data
    Attached Files Attached Files

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    The formula is not in your latest attachment - what's the problem?

  11. #11
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,914

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Another way:

    =IF(ISNUMBER(SUM(SEARCH(MID(A3,LEN(A3)-{3,2,1,0},1),"AEIOU"))),"Y","N")

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

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Phuocam your formula pulled for me these , how about the formula for g3 in which last 3 letters are vowels ?

    BANLIEUE
    KABLOOIE
    EPOPOEIA
    FORHOOIE

  13. #13
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Did you try this?

    =IF(ISNUMBER(SUM(SEARCH(MID(A3,LEN(A3)-{2,1,0},1),"AEIOU"))),"Y","N")

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

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Thank you ALIGW

    It pulled me these

    INERTIAE
    NOTITIAE
    METANOIA
    EULOGIAE
    ABOITEAU
    MONILIAE
    INFERIAE
    MINUTIAE
    ACTINIAE
    ABOIDEAU
    INDUCIAE
    INDUVIAE
    LACINIAE
    FILARIAE
    FACETIAE
    PARANOEA
    PRIEDIEU
    DYSPNOEA
    PARANOIA
    GASTRAEA
    TRACHEAE
    SILIQUAE
    DECIDUAE
    ZOOGLEAE
    FIMBRIAE
    BUDDLEIA
    OBSEQUIE
    ROUSSEAU
    NIRAMIAI
    ASSEGAAI
    BABESIAE
    HYPONOIA
    FURCRAEA
    HYPOGAEA
    ZOOGLOEA
    ALLELUIA
    FLAMBEAU
    COCHLEAE
    NYMPHAEA
    SAPUCAIA
    QUILLAIA

  15. #15
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Or try
    f3=iferror(if(sum(search(mid(right(a3,4),{1,2,3,4},1),"aeiou")),"y"),"n")
    g3=iferror(if(sum(search(mid(right(a3,3),{1,2,3},1),"aeiou")),"y"),"n")
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  16. #16
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,980

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    Thanks for the rep.

  17. #17
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,064

    Re: Plug Y if last 4 letters are Vowels otherwise leave blank

    What's the problem???

    see fil3e.
    Attached Files Attached Files

+ 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] Sort LIST by 3 vowels and 4 vowels and 5 vowels
    By makinmomb in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 02-01-2024, 11:10 PM
  2. [SOLVED] If last two letters vowels MARK as Y
    By makinmomb in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 02-14-2023, 04:15 AM
  3. [SOLVED] Mark Y if last two letters are VOWELS
    By makinmomb in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-22-2022, 06:05 AM
  4. [SOLVED] Similar by vowels , 7 and 8 letters
    By makinmomb in forum Excel Programming / VBA / Macros
    Replies: 23
    Last Post: 08-30-2017, 03:11 AM
  5. [SOLVED] If formula to confirm last 3 letters are vowels
    By makinmomb in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 04-08-2017, 06:19 PM
  6. [SOLVED] Pull vowels and then find letters
    By makinmomb in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 01-03-2017, 06:03 PM
  7. [SOLVED] Plug true if cell has one name else leave blank
    By makinmomb in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-24-2014, 12:15 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