Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Count the number of vowels in a string

Hi!

I would like to create a column (not power query!) that returns the number of vowels in a string.

Example:
atehikolule

 

returns 6

 

Any help appreciated!!

1 ACCEPTED SOLUTION
JarroVGIT
Resident Rockstar
Resident Rockstar

I created a table with only 1 column of data (Column1) and made a calculated column Count.

image.png

The formula of the Count column is the following:

Count = 
VAR a = SUBSTITUTE('Table (2)'[Column1], "a", "")
VAR e = SUBSTITUTE( a, "e", "")
VAR u = SUBSTITUTE( e,"u", "")
VAR i = SUBSTITUTE( u, "i","")
VAR o = SUBSTITUTE( i,"o", "")
RETURN
LEN('Table (2)'[Column1])-LEN(o)

Note that this is case sensitive, if your original column has capital letters you need to add those to the formula.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
JarroVGIT
Resident Rockstar
Resident Rockstar

I created a table with only 1 column of data (Column1) and made a calculated column Count.

image.png

The formula of the Count column is the following:

Count = 
VAR a = SUBSTITUTE('Table (2)'[Column1], "a", "")
VAR e = SUBSTITUTE( a, "e", "")
VAR u = SUBSTITUTE( e,"u", "")
VAR i = SUBSTITUTE( u, "i","")
VAR o = SUBSTITUTE( i,"o", "")
RETURN
LEN('Table (2)'[Column1])-LEN(o)

Note that this is case sensitive, if your original column has capital letters you need to add those to the formula.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.