Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Manish
Creator
Creator

Schedule a Qlik Sense task on every 6th working day of a month

Hi All

I have a requirement where I wanted to schedule a Qlik Sense task on every 6th working day of a month which means excluding Sat & Sun.

For example : In Nov 23 , Task should run on 8th Nov. 

I tried Custom Schedule but no luck. 

Any idea how can we achieve this?

Many thanks

Manish Kukreti

Labels (2)
2 Replies
Or
MVP
MVP

I don't think the built-in scheduling options can be used for this. You would need to either use an external scheduler, or work within what QMC scheduling can do (for example, schedule the task multiple times and check within the app's script whether or not it need to run, exiting with an error if it shouldn't).

brunobertels
Master
Master

Hi 

not sure it is possible in the QMC to shedule with a condition ( 6th working day of each month) 

So i would try somethink like this 

Shedule every day the reload task 

and in your script somethink like this : 

if

workingday(today()) = 6 then 

//yourscript 

load

...

from 

else 

exit script; 

ENDIF;