This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello All,
I need some help please, I want to calculate using count if for a text column, i have a column with words such as boy ; girl ; child ; family ; And ; model and different other combinations for 34 lines.
I am trying to calculate count if that contains a boy (one of each in the sentence above) and it is not returning any numbers.
thank you for your help!
Solved! Go to Solution.
Hi @ ,
You can create a measure like this:-
Measure =
CALCULATE (
COUNT ( 'Table'[Column1] ),
CONTAINSSTRING ( 'Table'[Column1], "boy" )
)
Thanks,
Samarth
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
Thank you
thank you so much, how about if i want multiple strings?
You can try like:-
Measure =
CALCULATE (
COUNT ( 'Table'[Column1] ),
CONTAINSSTRING ( 'Table'[Column1], "boy" ) ||
CONTAINSSTRING ( 'Table'[Column1], "girl" ) ||
CONTAINSSTRING ( 'Table'[Column1], "child"
)
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
Hi @ ,
You can create a measure like this:-
Measure =
CALCULATE (
COUNT ( 'Table'[Column1] ),
CONTAINSSTRING ( 'Table'[Column1], "boy" )
)
Thanks,
Samarth
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
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 33 | |
| 26 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 28 | |
| 24 | |
| 22 |