Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Run specific tabs on reload based on the day of the week

Hi Guys

I have 12 tabs in my script - one for each month.

I want to be able run all tabs for each month on Sunday but only the current month from Monday to Saturday.

Is this possible?

If so, how?

Any help would be appreciated.

Cheers,

Magen

2 Replies
Mark_Little
Luminary
Luminary

Hi,

You could simply add a where clause. Somehting like

Where Weekday(Today())= 'Sun'

then expand from there

Mark

tresesco
MVP
MVP

May be like:

If Weekday(today())='Sun' Then

    Exit Script;                              // This might not be required

     Set vNothing='DoNothing';

Else

     Do.... this

End If