Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qvd snap shot

Capture12.PNG

hello guyz,

i have a qvd which don't have a date field and i wanna to take snapshot of this qvd on 1st, 8th, 16th, 23rd of every month.

1 Reply
marcus_sommer

Something like this:

if(match(day(today()), 1,8,16,23) then

     let vStoreDate = date(today(), 'YourFormat');

     store myTable into myTable_$(vStoreDate).qvd (qvd);

end if

- Marcus