+ Reply to Thread
Results 1 to 4 of 4

Find the first vowel sound from a name

  1. #1
    Forum Contributor
    Join Date
    09-25-2011
    Location
    Lenasia, Johannesburg,South Africa
    MS-Off Ver
    Excel 2019
    Posts
    269

    Find the first vowel sound from a name

    Hi

    I have a first name that from here I need a formula help in order to

    1. find the first letter and paste into T10

    2. Find the first vowel sound from the name and past into T12


    Thank you in anticipation for all your help

    rajan
    Attached Files Attached Files

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Find the first vowel sound from a name

    Finding the first letter for a name that always begins in E8 is trivial and I'm surprised to see the question

    =E8

    Be careful to distinguish a vowel from a vowel sound. Finding the first vowel sound is a linguistics exercise that cannot be reasonably done in Excel. You can easily find the first letter that is a vowel:

    =INDEX(E8:Z8,MIN(IFERROR(MATCH({"a","e","i","o","u","y"},E8:Z8,0),99)))

    Enter this as an array formula. After typing in the formula, do not hit ENTER--hit CTRL+SHIFT+ENTER. You have done it correctly if the formula in the formula box has {braces} around it. You cannot type in the braces; they are just an indicator that it is an array formula.

    The first vowel sound in Yvonne is the Y. However, the first vowel sound in Yasmine or Yasser is the A.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,587

    Re: Find the first vowel sound from a name

    In T10

    =E8

    In T12

    =IFERROR(INDEX($E$8:$L$8,AGGREGATE(15,6,COLUMN($E$8:$L$8)/(ISNUMBER(SEARCH($E$8:$L$8,"aeiou"))),1)-COLUMN($D8)),"")
    Last edited by kvsrinivasamurthy; 03-30-2021 at 11:26 AM.
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

  4. #4
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,211

    Re: Find the first vowel sound from a name

    Please try at
    T10
    =INDEX(E8:L8,MATCH(0,INDEX(-ISNUMBER(SEARCH(E8:L8,"aeiou")),),))
    or
    =INDEX(E8:L8,MATCH(0,INDEX(-(E8:L8=T12),),))

    T12
    =INDEX(E8:L8,MATCH(0,INDEX(-ISERR(SEARCH(E8:L8,"aeiou")),),))
    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. Substitute final vowel of text string
    By Henry54289 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 12-28-2020, 06:10 AM
  2. [SOLVED] allocate avalue to a letter and state if its a vowel
    By khanaran in forum Excel General
    Replies: 4
    Last Post: 09-04-2018, 06:53 AM
  3. Replies: 9
    Last Post: 01-23-2018, 02:52 PM
  4. [SOLVED] Formula for showing the first vowel in a cell
    By Avly19 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-12-2017, 08:38 PM
  5. [SOLVED] Vowel hook search
    By makinmomb in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 12-26-2016, 03:10 PM
  6. [SOLVED] First Vowel
    By MRozell in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 12-06-2016, 08:15 AM
  7. [SOLVED] Vowel extracting in alpha order
    By makinmomb in forum Excel Formulas & Functions
    Replies: 14
    Last Post: 11-18-2016, 09:18 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