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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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