Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

How can i remove blanks on card visual using discont count

I am using this dax formular here but when there is a blank / null the card visual  shows "Blank" i have tried every trick and i cant get rid of the blank. anyone know how to get rid of it?

Count =
COALESCE(CALCULATE(DISTINCTCOUNT('WORKORDER'[SYSTEM])),0)
2 REPLIES 2
alena2k
Resolver IV
Resolver IV

hi @Anonymous 
I usually add variable is check if it is blank:
Count = 

VAR tmp = COALESCE(CALCULATE(DISTINCTCOUNT('WORKORDER'[SYSTEM])),0)

RETURN IF(ISBLANK(tmp), 0, tmp)
Anonymous
Not applicable

still getting a blank. 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors