The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello, friends
I need your help, i need a measure that count blank values and no blank values in a data range, for example:
Blank is red and no blank is green, i need to count blank = 9 and no Blank = 1. Have a measure in DAX that help me with this?
Thanks a lot!
Solved! Go to Solution.
Hi,
Here is one way to do this:
DAX:
Proud to be a Super User!
Hi,
Here is one way to do this:
DAX:
Proud to be a Super User!
@Anonymous unpivot the data in PQ
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |