Skip to main content
Announcements
Qlik Launches Open Lakehouse and advanced agentic AI experience in Qlik Answers! | LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
hitha1512
Creator

Qliksense Task : Scheduling Dashboard to run on 1st business day of every month

Hi Team,

I have a dashboard that needs to be scheduled to run on 1st business day of every month. I am aware of the fact that this option is not directly available in Qliksense QMC. 

can this be done via script ? Please help.

1 Solution

Accepted Solutions
tresesco
MVP

May be you can schedule the refresh in qmc for everyday, and then a script condition at the beginning, something like:

If today()<>LastWorkDate(MonthStart(Today()),1) Then

Exit Script;

End if

View solution in original post

2 Replies
tresesco
MVP

May be you can schedule the refresh in qmc for everyday, and then a script condition at the beginning, something like:

If today()<>LastWorkDate(MonthStart(Today()),1) Then

Exit Script;

End if

hitha1512
Creator
Author

Thank you 🙂 it worked on my local system. Have scheduled it to run next month, should work fine.