Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all,
I need help to create measure to count number of specific text that contains in one column, please note that I using direct query mode on connecting to database.
Here my illustration, I named it my table with "CovidSymptomsScreen"
Cough Fever |
Loss of smell |
Diarrhea fever |
Fever |
Headache Fever Diarrhea |
I hope the measure result will count the specific text that contains in a cell, here the illustration result if I create a table vizualisation :
Cough Fever | 2 |
Loss of smell | 1 |
Diarrhea fever | 2 |
Fever | 1 |
Headache Fever Diarrhea | 3 |
I am quite new with power bi, hopefully tutorial dax will shown from expert answer.
Thank you
Solved! Go to Solution.
You can create a measure with below code
word_count =
LEN ( MAX ( 'Table (5)'[Cough Fever] ) )
- LEN ( SUBSTITUTE ( MAX ( 'Table (5)'[Cough Fever] ), " ", "" ) ) + 1
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
You can create a measure with below code
word_count =
LEN ( MAX ( 'Table (5)'[Cough Fever] ) )
- LEN ( SUBSTITUTE ( MAX ( 'Table (5)'[Cough Fever] ), " ", "" ) ) + 1
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |