Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
danieldors
Contributor III
Contributor III

Calculated Field

Hello,

 

I started working with Qlik this week transitioning from Tableau and trying to add a calculated field, below is the calculation used in Tableau. Thank you

 

If [Local Use] <> 'null'
Then 'Pending'
ELSE 'Unrun'
END

 

1 Reply
jerifortune
Creator III
Creator III

Try this;

IF (isnull([Local Use] )=False(),  'Pending', 'Unrun')

OR

IF (LEN([Local Use] )>0,  'Pending', 'Unrun')