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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Dear community,
I am looking for a solution to count the amount of a certain text value occurs in a column. This sounds super simple, however I tried multiple formulas and my measure keeps returning blank. these formulas i tried and didn't work:
=DISTINCTCOUNT([Why did the employee decide to leave], "Job/Role") // not working
CALCULATE
(COUNTROWS('Exit interviews'),
'Exit interviews'
[Why did the employee decide to leave] = " Job/Role ") // not working
I have a dataset containing information on exit interviews. For some questions, participants can fill out multiple answers which results in one or multiple text strings in one column, delimited by " ; ". For all the leaving reasons in that column, I want to count them to be able to display them in a graph. Here is what the column looks like:
I hope someone can tell me how to do this, or what i was doing wrong!
many thanks in advance 🙂
Solved! Go to Solution.
@Anonymous .
First thing is you want to use COUNTA (used to Count Text Values) not DISTINCTCOUNT. The way you are using DistinctCount will always give a 1.
Next, in your Filter context, it is looking for an exact string. Your text value contains a semi-colon and hence PBI is saying it is not a match. To account for this, use CONTAINSSTRING:
Containsstring = CALCULATE( COUNTA( ExitInterviews[Reason] ),
FILTER( ExitInterviews, CONTAINSSTRING( ExitInterviews[Reason], "Job/Role" )))
The other thing you may want to consider is using Power Query to split your Columns by Delimiter. Use the advanced functions to "Split into Rows". Then you get all your Reasons individually by Row.
Hope this helps.
Regards,
@Anonymous .
First thing is you want to use COUNTA (used to Count Text Values) not DISTINCTCOUNT. The way you are using DistinctCount will always give a 1.
Next, in your Filter context, it is looking for an exact string. Your text value contains a semi-colon and hence PBI is saying it is not a match. To account for this, use CONTAINSSTRING:
Containsstring = CALCULATE( COUNTA( ExitInterviews[Reason] ),
FILTER( ExitInterviews, CONTAINSSTRING( ExitInterviews[Reason], "Job/Role" )))
The other thing you may want to consider is using Power Query to split your Columns by Delimiter. Use the advanced functions to "Split into Rows". Then you get all your Reasons individually by Row.
Hope this helps.
Regards,
It worked, thank you for the explanation! 🙂
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.