Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Try this;
IF (isnull([Local Use] )=False(), 'Pending', 'Unrun')
OR
IF (LEN([Local Use] )>0, 'Pending', 'Unrun')