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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Reload

Hi Experts,

I have  3 Sheets  in one folder  names are like

1) 2016_02_05

2) 2016_02_06

3) 2016_02_07

4) 2016_02_08

2016_02_08 is the latest sheet.

i have loaded  all sheets  in QV and here i have loaded recent sheet is 2016_02_08  when i go for reload  i need only latest sheet data.

who can i get.

Labels (1)
1 Reply
avinashelite
MVP
MVP

Try like

Temp:

LOAD

Filename() as Latest_date

from

folder\*

Let vLatest = max(Latest_date);

LOAD *

from

Folder\$(vLatest).xls;

Drop table Temp;