Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
maniram23
Creator II
Creator II

incrimental load

hi experts,

Every day morning 7.30 am my dash board data Is refreshed but last data is not updated. how will you handle this section?

1 Reply
Not applicable


Hi Mani,

In your incremental load logic ,put this logic

Last_Updated_Date:

Load
Date(Max(DateField),'YYYY-MM-DD') as MaxDate
FROM
Folder\abc.qvd]
(qvd);

Let Last_Modified_Date=peek('MaxDate',0,Last_Updated_Date);

This will Capture the max date from the qvd.

Hope this will help you!!!

Thanks,

Shekar.