Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

problem with add data into existing data

Hi

I have small assistance if i have few qvd's like country,region,master,sales.....i wanted to store new data into specific qvd, for example sales is qvd and today i was fetching the data into some other source so i need to store into sales qvd how can i do help me ...

1 Reply
swuehl
MVP
MVP

If I understand correctly, you want to load your existing QVD, then concatenate the new data and store the concatenated table back into the QVD:

DATA:

LOAD Dim1,

          Sales

FROM QVD.qvd (qvd);

// this table will be autoconcatenated,same fields used like above

LOAD Dim1,

          Sales

FROM NewData;

STORE DATA INTO QVD.qvd (qvd);