Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a table which lists user emails seperated by ';'. For example,
jac.smith@gmail.com; james.smith@yahoo.com; amy.white@gmail.com; jason.smith@gmail.com
If the DAX is correct, it should count 3. Any ideas?
Solved! Go to Solution.
Hi @dinosainsburys ,
You can create a new measure or column in your table with the following code:
LEN(Table[ColName])-LEN(SUBSTITUTE(Table[ColName],";",""))
To check how many times ; is in the column
Hi @dinosainsburys ,
You can create a new measure or column in your table with the following code:
LEN(Table[ColName])-LEN(SUBSTITUTE(Table[ColName],";",""))
To check how many times ; is in the column
Hey Try this measure
CountOfSemicolons =
SUMX (
'Users',
LEN ( 'Users'[EmailList] ) - LEN ( SUBSTITUTE ( 'Users'[EmailList], ";", "" ) )
)
Thanks
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!