Forum Discussion
Anonymous
3 years agoNot 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 =...
alena2k
Resolver IV
3 years agohi 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
3 years agoNot applicable
still getting a blank.