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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading saving previous data

Hello,

I have an excel table updated every day. I would like to load this excel table, but I want to save what was loading previously. How am I supposed to do?

Thanks for your help

1 Reply
marcus_sommer
MVP
MVP

You could use a load-statement like the following (by the initial load you need to comment out the first load-part from the qvd) and after that you load the previous data from the qvd and your new data from the excel whereby you will need a valid key-field for this, for example a date- or timestamp-field or maybe an order-id or something similar.

table:

Load * From QVD.qvd (qvd);

     concatenate (table)

Load * From YourExcel where not exists(KEY);

store table into QVD.qvd (qvd);

- Marcus