Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

is not null

in qlikview we have "is null" function like that

we have "is not null" function?

if  "is not null"  not exist in  qlikview function how to do for the "is not null" function in another way?

6 Replies
prma7799
Master III
Master III

I think for this we can use

Not IsNull function

Please share your expected output with sample file

tresesco
MVP
MVP

=Not IsNull()

antoniotiman
Master III
Master III

Hi,

IsNull()

Not IsNull()

or Len(Trim(Field)) = 0    // or > 0

Regards,

Antonio

manoranjan_d
Specialist
Specialist
Author

i think there is no "not is null" we have use to

belo condition

if (is null(fieldname)<>-1)

let me know ur thoughts

antoniotiman
Master III
Master III

Wrong Syntax

IsNull(Field) is already boolean condition

tresesco
MVP
MVP

You can try like:

1) if (isnull(fieldname)=0, 'Not Null', 'Null')

2) if (not isnull(fieldname), 'Not Null', 'Null')

3) if (isnull(fieldname), 'Null', 'Not Null')