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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

counting text values from a column

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:

RobinwDNV_0-1695736569776.png

 

I hope someone can tell me how to do this, or what i was doing wrong!

 

many thanks in advance 🙂

1 ACCEPTED SOLUTION
rsbin
Super User
Super User

@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,

View solution in original post

2 REPLIES 2
rsbin
Super User
Super User

@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
Not applicable

It worked, thank you for the explanation! 🙂

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors