<?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: Qlik Sense Desktop: Load from path in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665106#M10081</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you must use Lib paths for your data sources. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice that the Lib refers to a connection name, not the actual file path. This means that when opened on an other machine, the developer can simply change the folderpath in the preferred Lib and it will apply on all references to that Lib.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2014 18:37:19 GMT</pubDate>
    <dc:creator>ToniKautto</dc:creator>
    <dc:date>2014-09-22T18:37:19Z</dc:date>
    <item>
      <title>Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665105#M10080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qlik Sense Desktop 0.96 I was able to load an excel file using a variable for the path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vFolderPath = 'C:\MasterFiles\';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM $(vFolderPath)MyFile.xlsx (ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I upgraded to Qlik Sense Desktop 1.0.0 Build 21.ms8 and when I reload this now I get the following error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LOAD statement only works with lib:// paths in this script mode&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question is:&lt;/P&gt;&lt;P&gt;From Qlik Sense Desktop version 1 onwards, must you create a Folder Data Connection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there still a way to load a file using a FROM statement with a variable pointing to the path (rather than using a folder connection library). The reason I'm asking this is because when I share a app to another user I want to allow the user to simply change the path in the variable (use a trick or two for this to minimize user input) to allow that user to also load data from a file without having to edit the folder connection&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 15:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665105#M10080</guid>
      <dc:creator>qlikconsult</dc:creator>
      <dc:date>2014-09-22T15:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665106#M10081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you must use Lib paths for your data sources. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice that the Lib refers to a connection name, not the actual file path. This means that when opened on an other machine, the developer can simply change the folderpath in the preferred Lib and it will apply on all references to that Lib.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 18:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665106#M10081</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-22T18:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665107#M10082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jan-Hendrik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have experienced the same issues with my 0.96 Qlik Sense apps as well.&amp;nbsp; What I did for a work around for version 1.0 was to create a Lib path for the data sources, and modified the script variable to accommodate the new change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;Create a new Folder Data Connection in the script editor that points to the master files and give it a name. (For this case, we'll call the connection "&lt;STRONG&gt;FilePath&lt;/STRONG&gt;")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace the LET command in the beginning of your script with this new description:&lt;/P&gt;&lt;P&gt;LET &lt;STRONG&gt;v&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;FolderPath&lt;/STRONG&gt;&lt;/SPAN&gt; = 'lib://FilePath/';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's it!&amp;nbsp; No need to change any of the original table loads if they are all using the &lt;STRONG&gt;vFolderPath&lt;/STRONG&gt; variable in the FROM statements. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 22:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665107#M10082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-22T22:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665108#M10083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx guys!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 08:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665108#M10083</guid>
      <dc:creator>qlikconsult</dc:creator>
      <dc:date>2014-09-23T08:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665109#M10084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To follow up, what if my files are stored on a different drive (i.e. drive mapping?) - How do I define it with 'Lib' ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LET &lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;v&lt;/STRONG&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FolderPath&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; = 'D://FilePath/';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 12:07:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665109#M10084</guid>
      <dc:creator>jrdunson</dc:creator>
      <dc:date>2016-06-06T12:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665110#M10085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that is, the drivepath is for a different machine, not under my C: drive&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 12:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665110#M10085</guid>
      <dc:creator>jrdunson</dc:creator>
      <dc:date>2016-06-06T12:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665111#M10086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest you create a new folder connection and then type in the mapped drive (press enter after typing in mapped drive)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then defining variable in same way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="pic.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/127100_pic.png" style="height: 627px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 13:07:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665111#M10086</guid>
      <dc:creator>qlikconsult</dc:creator>
      <dc:date>2016-06-07T13:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665112#M10087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jan,&lt;/P&gt;&lt;P&gt; Hey, thanks for the feedback... that gets me half-say, Qlik Sense can logically see the files... in my QVD directory.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;It can even create the load script... &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Field1",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Field2", .... etc.&lt;/P&gt;&lt;P&gt;FROM [lib://X/corebio.qvd] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I run this, I get: &lt;/P&gt;&lt;P&gt;&lt;IMG alt="err1.JPG" class="jive-image image-1" height="171" src="https://community.qlik.com/legacyfs/online/127154_err1.JPG" style="height: 171.438px; width: 463px;" width="463" /&gt;&lt;/P&gt;&lt;P&gt;I have also tried:&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * from 'X:\corebio.qvd' (qvd)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * from 'X:\\corebio.qvd' (qvd)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * from 'X:\Custom\corebio.qvd' (qvd)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * from 'X:\\Custom\corebio.qvd' (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my Path definition: &lt;/P&gt;&lt;P&gt;&lt;IMG alt="conn.JPG" class="jive-image image-2" height="220" src="https://community.qlik.com/legacyfs/online/127155_conn.JPG" style="height: 219.856px; width: 419px;" width="419" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ... etc, more .qvd files... corbio.qvd, etc. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 18:02:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665112#M10087</guid>
      <dc:creator>jrdunson</dc:creator>
      <dc:date>2016-06-07T18:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665113#M10088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jarell,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be careful, if you are using Qlik Sense Server Edition, the username will be added to data connection name automatic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want use absolute path instead of lib connection you should disable the standard mode.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/sense/2.2/Subsystems/Hub/Content/LoadData/disable-standard-mode.htm?q=legacy%20mode" title="http://help.qlik.com/en-US/sense/2.2/Subsystems/Hub/Content/LoadData/disable-standard-mode.htm?q=legacy%20mode"&gt;Disabling standard mode ‒ Qlik Sense&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 07:06:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665113#M10088</guid>
      <dc:creator>undergrinder</dc:creator>
      <dc:date>2016-06-08T07:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665114#M10089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In simple worlds Creating a folder&amp;nbsp; by providing the path &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from script editor-&amp;gt; Create new connection-&amp;gt; Give the name and path of folder here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then fetch excel from the connected folder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will auto take Lib path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2018 10:16:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/665114#M10089</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2018-08-03T10:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Desktop: Load from path</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/1680474#M51782</link>
      <description>&lt;P&gt;I have the same question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LET vDir = 'C\Users\'&amp;nbsp; &amp;nbsp;'\Documents';&lt;/P&gt;&lt;P&gt;And then I would like to create a data connection with this path&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For exemple :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2020-02-28 171651.jpg" style="width: 316px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/29335i74E7445312D53F33/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Annotation 2020-02-28 171651.jpg" alt="Annotation 2020-02-28 171651.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But Qlik Sense does not allowed this connection.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 16:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Desktop-Load-from-path/m-p/1680474#M51782</guid>
      <dc:creator>Brossillon</dc:creator>
      <dc:date>2020-02-28T16:19:35Z</dc:date>
    </item>
  </channel>
</rss>

