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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

NULL VALUES

Hello everyone.

I have a problem with a null value, have an if statement where a comparison: if over 90 that puts "certified" if less than you put "non-certified" but if my field is empty (that is a base Excel) to make without information. In what way I can represent that it is null or empty field.

I only know this way, '' but it is not taking into account as null, how could you do to show "No information"?

Labels (1)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

See if this helps:

if(len(trim(Field))=0, 'No Information', if(Field>90, 'Certified', 'Non-Certified'))

View solution in original post

2 Replies
Anonymous
Not applicable
Author

See if this helps:

if(len(trim(Field))=0, 'No Information', if(Field>90, 'Certified', 'Non-Certified'))

Not applicable
Author

Thank you very much for the help.

It worked to perfection!