Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
mhmmd_srf
Creator II
Creator II

Qlik Sense Task should start from 3 AM EST Every Day

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

3 Replies
MayilVahanan

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

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
mhmmd_srf
Creator II
Creator II
Author

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.