Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to create a Qlik Sense Task which should run every 15 mins, but it should not run between 12 AM to 3 AM.
It should start from 3:15 AM.
How can we do this.
Thanks,
Sarif
Please see the options outlined here: https://community.qlik.com/t5/Qlik-Sense-Deployment-Management/Task-Reloads-How-to-restrict-task-rel...
Hi @mhmmd_srf
May be, you can add below lines in script after variable declaration will help you
//Exit the load script below 3:00 am
If(Time(Now(), 'HH:mm') <= Time(Time#('03:00','HH:mm'),'HH:mm')) then
Exit Script;
End If
I am doing below:
If(Time(Now(), 'HH:mm') >= Time(Time#('17:00','HH:mm'),'HH:mm')) then
Exit Script;
else
LOAD
ABC,
XYZ
FROM [lib://MNP.qvd]
(qvd);
End If;
But it is always going to if clause. Not going to else clause. Can u please suggest.