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: 
Not applicable

Not Null Expression

Dear Qlikview Gurus

Please assist me to convert NULL EXPRESSION if(IsNull([Stock]) to NOT NULL EXPRESSION

Regards

Mahlatse

3 Replies
sunny_talwar

May be this

If(not IsNull(Stock).....

Anonymous
Not applicable
Author

if(not IsNull([Stock])


???

wdchristensen
Specialist
Specialist

IF(Len(Trim(Stock))=0, 'Null', 'Not Null')


IF(Len(Trim(Stock))>0, 'Not Null', 'Null')