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

Announcements
FLASH SALE: Save $500! Use code FLASH2026 at checkout until Feb 14th at 11:59PM ET. Register Now!
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