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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

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