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

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them 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?

Labels (1)
1 Reply
marcus_sommer
MVP
MVP

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