Forum Discussion
Espen1515
Advocate I
8 years agoReplacing (Blanks) with 0
Hi, I have a number of Cards in my dashboard that return numbers. When I selected a filter where there no numbers, instead of displaying 0, it displays (Blank), and looks very ugly. Is there an e...
- 8 years ago
so you are using the raw source data, is it correct?
So its easy to you just make new column with this code
Column = IF(ISBLANK(**original column**),0,**original column**)
**original column** - your name for the column you are using.
Then change the value to the new column and it should work :)
jthomson
Solution Sage
8 years agoAdding +0 to the end of your measure is one quick way to fix this, or adding a new measure that looks at the existing one, and does a simple "if blank then 0 else existing measure" replacement
mohammadyousaf
Resolver II
5 years agoThank you, I just added the 0 after ) and it worked for me. simplest solution ever.