Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
zied_ahmed1
Specialist
Specialist

Load excel files where the name start with s

Hello everybody,

I would like to load some excel files from a LIB and the condition that i load all fields of an excel file where the name start with *s*

Thanks for help

1 Solution

Accepted Solutions
dwarikapanigrah
Contributor III
Contributor III

Hi Zied

Try this -

LOAD *

FROM

(biff, embedded labels, table is Sheet1);

Where  '*' is a wild character

View solution in original post

4 Replies
tomasz_tru
Specialist
Specialist

You can use wildcard in the script

s*.xls

zied_ahmed1
Specialist
Specialist
Author

can you please give me an example ?

Thank you

dwarikapanigrah
Contributor III
Contributor III

Hi Zied

Try this -

LOAD *

FROM

(biff, embedded labels, table is Sheet1);

Where  '*' is a wild character

zied_ahmed1
Specialist
Specialist
Author

Yes it works..just we need to change path to LIB Thank you