<?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 Path Variables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206744#M62754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rocky,&lt;/P&gt;&lt;P&gt;yep, that's exactly what I'm trying to do...&lt;/P&gt;&lt;P&gt;Which way is better: SET or LET... ?&lt;/P&gt;&lt;P&gt;Also, I have brackets in my code... and it seems to be running fine...do I need them?&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;SET TestDir = "E:\Program Files\QlikView\Pinnacle Insight\PI Config Files\Test Apps\";&lt;/P&gt;&lt;P&gt;Store MCATestingData into [$(TestDir)MCATestingData.qvd] (qvd);&lt;/P&gt;&lt;P&gt;Thx in advance for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Apr 2010 23:02:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-04-07T23:02:02Z</dc:date>
    <item>
      <title>Path Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206742#M62752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking for sample code that "sets" path variables vs. hard-coding path vars...then when testing... have to manually reset. Would rather set PATH vars in the "MAIN" sheet once &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; . Please advise.&lt;/P&gt;&lt;P&gt;---- Stephanie Lind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 19:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206742#M62752</guid>
      <dc:creator />
      <dc:date>2010-04-07T19:24:40Z</dc:date>
    </item>
    <item>
      <title>Path Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206743#M62753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Stephanie,&lt;/P&gt;&lt;P&gt;were you trying to assign paths to variables and use them in the script?&lt;/P&gt;&lt;P&gt;I'm not sure what you are looking for. if that is the case, you can create variables as-&lt;/P&gt;&lt;P&gt;LET PathName = 'C:\abc\def\';&lt;/P&gt;&lt;P&gt;Using it in script will be:&lt;/P&gt;&lt;P&gt;LOAD * from $(PathName)filename.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure, if you were looking for this!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 22:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206743#M62753</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-04-07T22:57:34Z</dc:date>
    </item>
    <item>
      <title>Path Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206744#M62754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rocky,&lt;/P&gt;&lt;P&gt;yep, that's exactly what I'm trying to do...&lt;/P&gt;&lt;P&gt;Which way is better: SET or LET... ?&lt;/P&gt;&lt;P&gt;Also, I have brackets in my code... and it seems to be running fine...do I need them?&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;SET TestDir = "E:\Program Files\QlikView\Pinnacle Insight\PI Config Files\Test Apps\";&lt;/P&gt;&lt;P&gt;Store MCATestingData into [$(TestDir)MCATestingData.qvd] (qvd);&lt;/P&gt;&lt;P&gt;Thx in advance for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 23:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206744#M62754</guid>
      <dc:creator />
      <dc:date>2010-04-07T23:02:02Z</dc:date>
    </item>
    <item>
      <title>Path Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206745#M62755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Stephanie, if you are talking about the brackets '[' in&lt;/P&gt;&lt;P&gt;Store MCATestingData into [$(TestDir)MCATestingData.qvd] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are only necessary if you spaces or special characters in the file name or path used.&lt;/P&gt;&lt;P&gt;Lets say -&lt;/P&gt;&lt;P&gt;Store MCATestingData into [$(TestDir)MCA Testing Data.qvd] (qvd);&lt;/P&gt;&lt;P&gt;will give an error if you remove the '[' and ']'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 23:09:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206745#M62755</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-04-07T23:09:01Z</dc:date>
    </item>
    <item>
      <title>Path Variables</title>
      <link>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206746#M62756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that's right, I forgot. Thanks so much again... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 23:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Path-Variables/m-p/206746#M62756</guid>
      <dc:creator />
      <dc:date>2010-04-07T23:23:48Z</dc:date>
    </item>
  </channel>
</rss>

