<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to load multiple Excel Files from OneDrive Folder to Qlik Sense Business (Cloud) in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/2035832#M11971</link>
    <description>&lt;P&gt;Steve does some amazing work - thanks for this one...&lt;/P&gt;
&lt;P&gt;There is a great youtube walkthrough vid to go with it -&amp;nbsp;&lt;A class="fui-Link ___m14voj0 f3rmtva f1ern45e f1deefiw f1n71otn f1q5o8ev f1h8hb77 f1vxd6vx f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1hu3pq6 f11qmguv f19f4twv f1tyq0we f1g0x7ka fhxju0i f1qch9an f1cnd47f fqv5qza f1vmzxwi f1o700av f13mvf36 f9n3di6 f1ids18y fygtlnl f1deo86v f12x56k7 f1iescvh ftqa4ok f50u1b5 fs3pq8b f1hghxdh f1tymzes f1x7u7e9 f1cmlufx f10aw75t fsle3fq" tabindex="-1" title="https://www.youtube.com/watch?v=_ufHf9Wm4XA" href="https://www.youtube.com/watch?v=_ufHf9Wm4XA" target="_blank" rel="noopener noreferrer nofollow" aria-label="Link https://www.youtube.com/watch?v=_ufHf9Wm4XA"&gt;https://www.youtube.com/watch?v=_ufHf9Wm4XA&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Feb 2023 09:42:26 GMT</pubDate>
    <dc:creator>AdyWorrall</dc:creator>
    <dc:date>2023-02-09T09:42:26Z</dc:date>
    <item>
      <title>How to load multiple Excel Files from OneDrive Folder to Qlik Sense Business (Cloud)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/1741314#M8392</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;We had to switch from Qlik Sense Desktop to the Cloud Version (Qlik Sense Business).&amp;nbsp;&lt;BR /&gt;On the old App our data (multiple, identically structured Excel-Files stored in one folder) got loaded by a simple folder path connection: e.g. G:QLIK_DATA/Shipments/*.xlsx (every week a new Excel-File got added to the folder).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now we cannot directly get the data from "on-premise" in the new cloud version of Qlik (which actually sucks a bit). So we put all our data on a OneDrive Folder.&lt;/P&gt;&lt;P&gt;But now I have the issue that the * Command in the FROM path (meaning loading all Files from a specific folder) does&amp;nbsp; not work anymore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody tell me how I am able to load multiple excel files from a OneDrive folder? Do I have to use some sort of loop?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;PS: All Excel-Files share the same table name.&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your insight!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 15:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/1741314#M8392</guid>
      <dc:creator>qlik_user2</dc:creator>
      <dc:date>2021-12-23T15:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to load multiple Excel Files from OneDrive Folder to Qlik Sense Business (Cloud)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/1741318#M8393</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This blog post describes how to deal with it for a number of other Cloud providers:&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/&amp;nbsp;" target="_blank"&gt;https://www.quickintelligence.co.uk/cloud-file-services-qlik-sense/&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The OneDrive connector was not there when I wrote this (must get around to updating it sometime), but does now exist. Like the other connectors there are two separate connectors, a MetaData one and a File one. You need to get the list from one and then loop around getting the detail from the other.&lt;/P&gt;&lt;P&gt;I think that the code you will need for OneDrive will be something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'OneDrive_Metadata';&lt;/P&gt;&lt;P&gt;tmpAllFileSelections:&lt;BR /&gt;LOAD&lt;BR /&gt;*&lt;BR /&gt;;&lt;BR /&gt;SELECT&lt;BR /&gt;id,&lt;BR /&gt;name,&lt;BR /&gt;createdDateTime,&lt;BR /&gt;webUrl&lt;BR /&gt;FROM Items&lt;BR /&gt;WITH PROPERTIES (&lt;BR /&gt;driveId='',&lt;BR /&gt;folderId='',&lt;BR /&gt;path='/Your/Path',&lt;BR /&gt;maxResults=''&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;for iFile = 0 to NoOfRows('tmpAllFileSelections') -1&lt;BR /&gt;let vFile = peek('name', iFile, 'tmpAllFileSelections');&lt;BR /&gt;&lt;BR /&gt;SalesFiles:&lt;BR /&gt;LOAD&lt;BR /&gt;*,&lt;BR /&gt;'$(vFile)' As FileName&lt;BR /&gt;FROM [lib://OneDriveData/Your/Path/$(vFile)]&lt;BR /&gt;(txt, codepage is 28591, no labels, delimiter is ',', msq)&lt;BR /&gt;;&lt;BR /&gt;Next&lt;/P&gt;&lt;P&gt;DROP TABLE tmpAllFileSelections;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Another approach is the new Qlik DataTransfer tool. This is not something I have tried yet, but it looks pretty cool:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.qlik.com/us/products/qlik-data-transfer&amp;nbsp;" target="_blank"&gt;https://www.qlik.com/us/products/qlik-data-transfer&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2020 15:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/1741318#M8393</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2020-09-04T15:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to load multiple Excel Files from OneDrive Folder to Qlik Sense Business (Cloud)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/2035832#M11971</link>
      <description>&lt;P&gt;Steve does some amazing work - thanks for this one...&lt;/P&gt;
&lt;P&gt;There is a great youtube walkthrough vid to go with it -&amp;nbsp;&lt;A class="fui-Link ___m14voj0 f3rmtva f1ern45e f1deefiw f1n71otn f1q5o8ev f1h8hb77 f1vxd6vx f1ewtqcl fyind8e f1k6fduh f1w7gpdv fk6fouc fjoy568 figsok6 f1hu3pq6 f11qmguv f19f4twv f1tyq0we f1g0x7ka fhxju0i f1qch9an f1cnd47f fqv5qza f1vmzxwi f1o700av f13mvf36 f9n3di6 f1ids18y fygtlnl f1deo86v f12x56k7 f1iescvh ftqa4ok f50u1b5 fs3pq8b f1hghxdh f1tymzes f1x7u7e9 f1cmlufx f10aw75t fsle3fq" tabindex="-1" title="https://www.youtube.com/watch?v=_ufHf9Wm4XA" href="https://www.youtube.com/watch?v=_ufHf9Wm4XA" target="_blank" rel="noopener noreferrer nofollow" aria-label="Link https://www.youtube.com/watch?v=_ufHf9Wm4XA"&gt;https://www.youtube.com/watch?v=_ufHf9Wm4XA&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 09:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/2035832#M11971</guid>
      <dc:creator>AdyWorrall</dc:creator>
      <dc:date>2023-02-09T09:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to load multiple Excel Files from OneDrive Folder to Qlik Sense Business (Cloud)</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/2035858#M11972</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/121077"&gt;@AdyWorrall&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 10:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-multiple-Excel-Files-from-OneDrive-Folder-to-Qlik/m-p/2035858#M11972</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2023-02-09T10:12:24Z</dc:date>
    </item>
  </channel>
</rss>

