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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I see lots of answers on how to count rows containing certain text, but I need to count rows of text that do not contain the word "Open". How do I do this?
Solved! Go to Solution.
Yes! That worked! Thank you SO much! Been struggling all morning on that. I am a relatively new user.
Unfortunately, this didn't work. Is there another piece to the code?
I just sent you the FILTER (which you need to use inside CALCULATE).
Create a new measure like this :
YourMeasure = CALCULATE( COUNT('YourTable'[YourColumn]),FILTER('YourTable', NOT(CONTAINSSTRING('YourTable'[YourColumn], "Open")))
Have a nice day.
Yes! That worked! Thank you SO much! Been struggling all morning on that. I am a relatively new user.
Glad it is working well 🙂
Hi @jvanarsdale ,
Please try this .
Price Count = IF( 'Product'[List Price] != "Open", COUNTROW( 'Product'[Text] ))
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
Proud to be a Super User!
Hello @jvanarsdale ,
You can use NOT() in your filter.
Would looks like :
FILTER('YourTable', NOT(CONTAINSSTRING('YourTable'[YourColumn], "Open"))
The measure would be :
YourMeasure = CALCULATE( COUNT('YourTable'[YourColumn]),FILTER('YourTable', NOT(CONTAINSSTRING('YourTable'[YourColumn], "Open")))
Have a nice day
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |