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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

schedule

I have a report which runs everyday .. but i need to run a part of a script i.e making a backup of table only on the 28th of every month into a QVD

Rest of the days this part of the script should not run

is theire any automated way?

1 Reply
marcus_sommer

You could add a small if-loop like this within the script:

if day(today()) = 28 then

     store table into tablebackup.qvd (qvd);

end if

- Marcus