Hi Dears,
I have the following case
Column 1 Column 2
1 NA
1 NA
2 X
3 Y
4 NA
4 NA
I want to count the number of "NA" with a filter on distinct on column1. So the count of NA return a value = 2 and not 4
Thanks,
Mohamed
Solved! Go to Solution.
Hi,
You need to create the following measures:
Dsct = Distinctcount(YourTable[Column1]) DsctNA = Calculate ( [Dsct] , YourTable[Column2] = "NA")
You can just create a measure as
distinct CNT = DISTINCTCOUNT(Table2[Column1])
You can just create a measure as
distinct CNT = DISTINCTCOUNT(Table2[Column1])
Hi,
You need to create the following measures:
Dsct = Distinctcount(YourTable[Column1]) DsctNA = Calculate ( [Dsct] , YourTable[Column2] = "NA")
Featured Session: Drive Data Culture with Power BI- Vision, Strategy & Roadmap. Register here https://myignite.microsoft.com #MSIgnite #PowerPlatform #Power BI
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
469 | |
185 | |
118 | |
62 | |
52 |
User | Count |
---|---|
442 | |
170 | |
128 | |
77 | |
74 |