Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change empty fields to blank

Is there a way to show empty fields in a straight table chart as blank instead of the '-'? I know you can do an if-else-condition in the expression, but with over 100 columns that would be a lot of manual work. Any easier way to accomplish this?

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Daren,

Chart Properties -> Presentation Tab -> Replace the hyphen in null symbol and missing symbol by space.

View solution in original post

4 Replies
sunny_talwar

You can do this:

If(Len(Trim(Field)) = 0, ' ', Field)

tamilarasu
Champion
Champion

Hi Daren,

Chart Properties -> Presentation Tab -> Replace the hyphen in null symbol and missing symbol by space.

Not applicable
Author

Do you put this in every single expression?

Not applicable
Author

Thanks Tamil that works!