Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Need your kind help again,
I have the following table
Country Name
Sudan X
Sudan Y
Sudan Z
Nigeria (null)
When I use a map with color saturation count of name (Distinct), and I hover over Nigeria, it is showing me the count = 1 instead of 0. Any advise?
Thanks,
Solved! Go to Solution.
Hi @abukapsoun,
DISTINCTCOUNT function counts the number of different cells in a column of numbers, it will not ignore the null values. In your scenario, you can try to create a measure:
Measure 2 = var CountIgnoreBlank=CALCULATE(DISTINCTCOUNT(Table1[Name]),FILTER('Table1','Table1'[Name]<>BLANK()))
return
IF(CountIgnoreBlank=BLANK(),0,CountIgnoreBlank)
Then place this measure to Color Saturation box.
Best Regards,
QiuyunYu
Hi @abukapsoun,
DISTINCTCOUNT function counts the number of different cells in a column of numbers, it will not ignore the null values. In your scenario, you can try to create a measure:
Measure 2 = var CountIgnoreBlank=CALCULATE(DISTINCTCOUNT(Table1[Name]),FILTER('Table1','Table1'[Name]<>BLANK()))
return
IF(CountIgnoreBlank=BLANK(),0,CountIgnoreBlank)
Then place this measure to Color Saturation box.
Best Regards,
QiuyunYu
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 137 | |
| 102 | |
| 68 | |
| 66 | |
| 64 |