Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikuser222
Creator
Creator

Refresh only on Sat

Hi All,

I have a requirement where i should refresh a particular table in QVW only on sat and rest all tables everyday.

Currently  i am managing refresh manually and want to automate it.

Example

Set TableXXX_Refresh = 1;

IF TableXXX_Refresh = 1 then

Load *;

SQL Select etc..

I am managing the above code manually, by switching TableXXX_Refresh between 1 and 0. I want to automate it and want to run the TableXXX_Refresh only on Sat.

Thanks

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try this:

IF( WeekDay(Today()) = 'Sat') Then

Load *;

SQL Select etc..

View solution in original post

1 Reply
vishsaggi
Champion III
Champion III

Try this:

IF( WeekDay(Today()) = 'Sat') Then

Load *;

SQL Select etc..