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: 
Jord23Henk
Contributor II
Contributor II

SharePoint 365 Connector to load multiple files at once

Hi,

in the regular path from folders I can write in the code * to load all similar files (for this example, to load Targets_2020, Targets_2021, Targets_2022, etc..)

FROM [lib://1_Resources_PROD\Sales\Budget\Targets_20*.xlsx] (ooxml, embedded labels, table is XXX);

 

in the SharePoint 365 the * is not working. how do I load multiple excels at once to the code?

 

Thanks! ! ! ! !

Labels (2)
1 Reply
Ricieridm
Contributor
Contributor

Hello,

You can use:


For Each vFile in Filelist('lib://AAA/BBB/')
    If WildMatch('$(vFile)','*Targets*.qvd') then
      LOAD
              *
      FROM [$(vFile)](qvd);
    End If
Next