How to Display Blank Spaces for Null Values in a Dashboard Widget
Published:
In some cases, you may want to display a blank space instead of a null value in a field. This can be achieved by using an expression. Here’s how to do it:
Steps
- Create an expression for the field that contains the null value. Use the following expression condition:
IF(ISNULL([Column])='true',' ',[Column])
- Bind the created expression field to the grid widget.
After following these steps, the grid widget will render the blank space instead of the null value.