Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have a Table,
| N_Name | O_Name | O_Status | patID |
| A | O1 | Completed | 8652 |
| A | O1 | Completed | 8652 |
| A | O1 | Completed | 8652 |
| A | O1 | Completed | 8718 |
| A | O1 | Completed | 8718 |
| A | O1 | Completed | 8718 |
| A | O2 | Completed | |
| A | O2 | Completed | |
| A | O2 | Completed | |
| A | O3 | New | |
| A | O4 | In Progress | |
| A | O4 | In Progress | |
| B | O5 | Completed | 8126 |
| B | O5 | Completed | 8126 |
| B | O5 | Completed | 8126 |
| B | O5 | Completed | 8126 |
| B | O5 | Completed | 8126 |
| B | O5 | New |
I wanted produce a table visualization which looks like the below,
I wrote a dax query,
count = IF(ISNUMBER(DISTINCTCOUNT('Table'[PATID])),DISTINCTCOUNT('Table'[PATID]), 0)
But this produces a table like counting the null values of patID to be 1,
Please help with correct dax query to avoid the above null values.
Thanks
Solved! Go to Solution.
Hi,
This measure works
Count = coalesce(CALCULATE(DISTINCTCOUNT(Data[patID]),Data[patID]<>blank()),0)
Hope this helps.
Why have you used the ALL function there? Try this measure
x_Applications Acted Upon = CALCULATE(DISTINCTCOUNT('Left Join'[LOANS.PAT_ID]), 'Left Join'[Application Status] == "Acted",'Left Join'[LOANS.PAT_ID]<>BLANK())
Thank you so much Sir
Hi,
This measure works
Count = coalesce(CALCULATE(DISTINCTCOUNT(Data[patID]),Data[patID]<>blank()),0)
Hope this helps.
Sir, a quick question,
How do i implement the same (i.e) avoiding the null values
if my original dax query is something like the below,
Why have you used the ALL function there? Try this measure
x_Applications Acted Upon = CALCULATE(DISTINCTCOUNT('Left Join'[LOANS.PAT_ID]), 'Left Join'[Application Status] == "Acted",'Left Join'[LOANS.PAT_ID]<>BLANK())
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |