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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

indication of new data in table

Hi

i create a table with country name ,date and status,  this table update every day and i want to create some kind of indication when i load the table with new country added as new , something like this

Capture.PNG

Any idea ?

Thanks

1 Reply
swuehl
MVP
MVP

Maybe load your historic data first, then load your current table and check with EXISTS() if the Country value is already present in the historic table:

Table:

LOAD date, country, 'done' as status // or set the status to done at any other place where appropriate

FROM Historic.qvd (qvd);

CONCATENATE (Table)

LOAD

     today() as date,

     country,

     'New' as status

FROM YourTableSource

WHERE NOT EXISTS(country);

STORE Table INTO Historic.qvd (qvd);

You can also look deeper into the concept of an incremental load, which could also handle updated and deleted records, e.g. here:

http://qlikviewcookbook.com/download/delta-load-template/