Is there a way we can set up an alert message in QV, which will be popped anytime a user opens a Qlikview app and a certain condition is satisfied. So what I am trying to do here is to set up a pop up alert message and the alert should only be shown to user based on the condition below:
=if(now() - StartTimestamp >1.02 AND Status <> 'Completed','DATA MAY NOT BE CURRENT & COMPLETE (Contact ABC)',
if(now() - StartTimestamp >1.02,'DATA MAY NOT BE CURRENT
(Check time stamp below and/or contact ABC)',
IF(Status <> 'Completed','DATA MAY NOT BE COMPLETE
(Contact ABC)','')))
So, based on the simple if condition above, the alert should pop the right message else nothing should be displayed. Can anyone please provide any suggestions for this?