Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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')