Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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