Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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
Specialist
Specialist

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<>'';