Forum Discussion
Espen1515
8 years agoAdvocate I
Replacing (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 :)
rodlovely
6 years agoRegular Visitor
If you want is to replace blank or null values with 0 without creating a new column, then use the Query Editor.
- Select Edit Query.
- In the query window, right click on the column header and select Replace Values...
Notes:
- Pay attention to where you insert the command in your Query steps.
- You can select multiple columns by holding down the Ctrl key when you select the column header
- You can view and modify the code in the Advanced Editor if needed.
- You can replace any values with this method