Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hi,
I have a table with 2 columns (ID, status)
I want to get the distinct count of ID whose status is blank
| ID | STATUS |
| 1 | Passed |
| 2 | Passed |
| 3 | |
| 3 | |
| 4 | Passed |
| 5 | |
| 6 | Passed |
I want the output to be: 2 (Distinct Count of ID that have status as blank)
I have tried with different measures I was not able to get the output.
Can someone please help me on the same.
Thanks,
Anand
Solved! Go to Solution.
@anandmitta Try:
Measure =
VAR __Table = FILTER('Table',[STATUS] = BLANK()) //or try = ""
RETURN
COUNTROWS(DISTINCT(SELECTCOLUMNS(__Table,"ID",[ID])))
@anandmitta Try:
Measure =
VAR __Table = FILTER('Table',[STATUS] = BLANK()) //or try = ""
RETURN
COUNTROWS(DISTINCT(SELECTCOLUMNS(__Table,"ID",[ID])))
Thank You so much!!!! It worked
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 48 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 116 | |
| 38 | |
| 36 | |
| 27 |