Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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')