Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Automated Save As job

Is it possible to create an automated Save As job for my Qlikview file?

Basically what I need is a copy of my file to be saved everyday at 15:00 with this name format stock_report_2012_06_22.qvw

Cheers,

Mem

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

Assuming you don't have Publisher, you can do that using the Windows Scheduler that calls a BATCH file with OS instructions to copy the original file to a new location with that name.

A .BAT file with something like the following should work.

SET DATESTAMP=%DATE:~0,2%_%DATE:~3,2%_%DATE:~6,4%

COPY OriginalFile.qvw Stock_Report_%DATESTAMP%.qvw

Hope that helps.

Miguel

View solution in original post

3 Replies
Miguel_Angel_Baeyens

Hi,

Assuming you don't have Publisher, you can do that using the Windows Scheduler that calls a BATCH file with OS instructions to copy the original file to a new location with that name.

A .BAT file with something like the following should work.

SET DATESTAMP=%DATE:~0,2%_%DATE:~3,2%_%DATE:~6,4%

COPY OriginalFile.qvw Stock_Report_%DATESTAMP%.qvw

Hope that helps.

Miguel

Not applicable
Author

worked perfectly, thanks very much!

cheers,

mem

Not applicable
Author

Hi Miguel,

I have to publish the Archived QlikView Files to the Server.

How can we do that?

the file names will be different. so we cannot create task for every file.

so how we can do it but not by mounting folder?

can you please help me?