The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi guys!
I am looking to count the text Unavailable only in the whole table and present it in chart form (bar or pie/donut) with the count only on the "Unavailable" Text. My data is as below:
appreciate suggestions for DAX and methods!
Thank you in advance!
Solved! Go to Solution.
Hi @sup_dome
When you imported the data was it in that format? I would recommend changing the format from Pivot to Tabular
Unavailable Count =
CALCULATE(COUNTROWS(Table),
KEEPFILTERS(Table[Values] =
"Unavailable")
Thanks
Joe
If you found my answer helpful and it solved your issue, please accept as solution
Proud to be a Super User! | |
Date tables help! Learn more
Hi @sup_dome
When you imported the data was it in that format? I would recommend changing the format from Pivot to Tabular
Unavailable Count =
CALCULATE(COUNTROWS(Table),
KEEPFILTERS(Table[Values] =
"Unavailable")
Thanks
Joe
If you found my answer helpful and it solved your issue, please accept as solution
Proud to be a Super User! | |
Date tables help! Learn more
Thanks Joe! Appreciate it.
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
12 | |
9 | |
5 |