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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

null or missing

hi ,,

basically my chart is showing for one of the columns as '-' ... but in the presentation tab.. I changed both null symbol and missing symbol to Null and Missing.

But the chart only showed some of them as ;null' and most of them as '-'..

anybody know why is this ? and what '-' corresponds to?

1 Solution

Accepted Solutions
raadwiptec
Creator II
Creator II
Author

hi all I solved it by using a filter in the script where the whitespaces and -..

View solution in original post

6 Replies
sasikanth
Master
Master

May be Your data contains that value?

can share a sample

sunny_talwar

May be the data is coming in as '-' instead of null.

Try suppressing the - to null in the script:

PurgeChar(FieldName, '-') as FieldName

ashfaq_haseeb
Champion III
Champion III

its_anandrjs
Champion III
Champion III

Hi,

Try to remove this at the load script by filtering it

Ex:-

Len(FieldName) = 1

Or

Load

*,

If(FieldName = '-', 0 Fieldname)

From Location;

And there are many ways.

Regards,

Anand

raadwiptec
Creator II
Creator II
Author

hi all I solved it by using a filter in the script where the whitespaces and -..

sunny_talwar

Awesome, please close the thread by marking correct and helpful answers if you got what you were looking for