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

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
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.