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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Incremental Load + Update QVD using filebase name

Hi the community,

New to Qlikview, I would like to create an incremental load and update the qvd file created with new data based on the excel file name.

All my excel files starts with YYYYMMDD.

As you can see below, I started to write the script.

Incremental_Load_test:
LOAD Left(FileBaseName(),8) as [Period ID],
Title,
[Trip Number],
Status
FROM

(
ooxml, embedded labels, header is 1 lines)
where [Period ID] > '20150315';

Concatenate
LOAD

Title,
[Trip Number],
Status
FROM
(
qvd);
Store Incremental_Load_test into (qvd);

When I upload, it says that the field [Period ID] is not found.

Any suggestion ?

Thank you

0 Replies