Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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"?

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!