Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
amars
Specialist
Specialist

Removing a - from a table.

Hi all,

I am able to remove the "-" from a chart by going to the presentation tab & removing the "-" from  the Null Symbol text box. Now I wish to do the same for a Table box . How shoul I do that.? Please suggest. Thanks in advance.

Amar

3 Replies
mike_garcia
Luminary Alumni
Luminary Alumni

Go to Properties > Fields > Select your field and mark "Omit Rows Where Field is Null".

Mike

Miguel García
Qlik Expert, Author and Trainer
Not applicable

Hi,

You can skipp blank in script it self. Take null as space in script.

isnull(field,' ')

montubhardwaj
Specialist
Specialist

You can filter it in the script as well:

Load a,b,c

From abc

where a<>'';