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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
vvvvvvizard
Partner - Specialist
Partner - Specialist

where clause not working

I have a list of excel files 201401.xlsx,201402.xlsx,201403.xlsx ..... until 201505.xlsx

the first loads works perfect where i wna load all data before 201404 including 201404

Load

FROM

(ooxml, embedded labels, table is Export)

Where  SubField(Filename(),'.',1)<=201504;

the second load gives  alot of table not found error

FROM

(ooxml, embedded labels, table is Export)

Where  SubField(Filename(),'.',1)>201504;

This works fine

so if i changed it to load 201505 file only i get no table found errors, and the field names in the previous load is a copy and past to the ones used here , so this tells me its the where clause and not the fields missing

FROM

(ooxml, embedded labels, table is Export);

10 Replies
vvvvvvizard
Partner - Specialist
Partner - Specialist
Author

Thanks , didnt know about the debugger , tested it works