Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
I have columns 'ID' and 'PO'
PO columns has values 0, 100 and blank cells.
I want the count of ID where PO = 0 (only). But even the blank gets counted.
I have used this dax to eliminate blank but still I dont get the output desired. I get blank value instead .
Please help.
Hi: You can try this measure:
Hi,
In the Query Editor, change the data type of the PO column to Text. Now try this measure
SKUswith0 = CALCULATE(DISTINCTCOUNT('Master Data'[id]),'Master Data'[PO] = "0")
If you do not want to change the data type, then try this measure
SKUswith0 = CALCULATE(DISTINCTCOUNT('Master Data'[id]),'Master Data'[PO] == 0)
Hope this helps.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
18 | |
17 | |
16 | |
15 |
User | Count |
---|---|
29 | |
27 | |
19 | |
15 | |
14 |