Forum Discussion
Anonymous
3 years agoNot applicable
How to remove BLANK on vard visual
I have a card visual based on this DAX logic, however whenever there is no values (results) i keep getting BLANK on the card visual- i tried appending a zero at the end of teh logic but that is not working. anyone else has a suggestion?
OrderCount =
CALCULATE(DISTINCTCOUNT('sales'[orders]))+0
5 Replies
- SykResident Rockstar
What you have should work..
You can also try the coalesce function which returns the first value that is not blank. This should also keep it from saying (Blank)
- AnonymousNot applicable
Still getting a BLANK- I tried all the above suggestions and still not getting the desired output
- DOLEARY85Resident Rockstar
Do you have a copy of the PBIX file you could share?
- luiguiwongNew MemberIF(COUNTA(SICTEC[CLASE])=0,"0")