Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to put "Not Accessed" In the last column for the boxes that contain '-' but nothing works. I've tried numerous IF statements and len but nothing seems to work. It is tied with users first/last name and their emails if that helps. All i need is for LastViewDate to show 'Not Accessed' when there is a blank.
Hi Kaylab.
Those "-" are null values, you can treat them by using IsNull Function.
In your case: If(IsNull(Latest),'Not Accessed', Latest).
You can use this either on your table or directly into the Script.
-Zapparoli
Check my Youtube Channel for more Qlik Content
https://www.youtube.com/@ZappaAnalytics
Hi
Can you try with Alt function like
Alt(Latest, 'Not Accessed')
Hi
Are you implementing the suggestion in front end or back end?