<?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 Variables in Paths in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673391#M1061039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently use the following in my scripts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET &lt;EM&gt;vQVD_Path&lt;/EM&gt; = '\\asdf\qerty\Qlikview\Development\QVD\TableFiles';&lt;/P&gt;&lt;P&gt;in combination with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE TableName into &lt;EM&gt;$(vQVD_Path)&lt;/EM&gt;\TableName.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET &lt;EM&gt;vEnvironment&lt;/EM&gt; = 'Development';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET &lt;EM&gt;vQVD_Path&lt;/EM&gt; = '\\asdf\qerty\Qlikview\' &amp;amp; &lt;EM&gt;$(vEnvironment)&lt;/EM&gt; &amp;amp; '\QVD\TableFiles';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my reload fails&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to make this work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Sep 2014 14:13:53 GMT</pubDate>
    <dc:creator>hobanwashburne</dc:creator>
    <dc:date>2014-09-23T14:13:53Z</dc:date>
    <item>
      <title>Variables in Paths</title>
      <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673391#M1061039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently use the following in my scripts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET &lt;EM&gt;vQVD_Path&lt;/EM&gt; = '\\asdf\qerty\Qlikview\Development\QVD\TableFiles';&lt;/P&gt;&lt;P&gt;in combination with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE TableName into &lt;EM&gt;$(vQVD_Path)&lt;/EM&gt;\TableName.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET &lt;EM&gt;vEnvironment&lt;/EM&gt; = 'Development';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET &lt;EM&gt;vQVD_Path&lt;/EM&gt; = '\\asdf\qerty\Qlikview\' &amp;amp; &lt;EM&gt;$(vEnvironment)&lt;/EM&gt; &amp;amp; '\QVD\TableFiles';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my reload fails&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to make this work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:13:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673391#M1061039</guid>
      <dc:creator>hobanwashburne</dc:creator>
      <dc:date>2014-09-23T14:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Variables in Paths</title>
      <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673392#M1061040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using LET instead of SET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;P&gt;QlikCentral.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:18:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673392#M1061040</guid>
      <dc:creator>richard_pearce6</dc:creator>
      <dc:date>2014-09-23T14:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Variables in Paths</title>
      <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673393#M1061041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what it returns:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;vQVD_Path&lt;/TD&gt;&lt;TD&gt;"'\\asdf\qerty\Qlikview\' &amp;amp; Development &amp;amp; '\QVD\TableFiles'"&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should work if you delete the &amp;amp; like this:&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;"&gt;SET &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;vQVD_Path&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; = '\\asdf\qerty\Qlikview\&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;$(vEnvironment)&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;\QVD\TableFiles';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the debugger, its a really nice tool!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:21:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673393#M1061041</guid>
      <dc:creator />
      <dc:date>2014-09-23T14:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Variables in Paths</title>
      <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673394#M1061042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You were both right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I needed to change "set" to "let" and format the string as Ramiro suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673394#M1061042</guid>
      <dc:creator>hobanwashburne</dc:creator>
      <dc:date>2014-09-23T14:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Variables in Paths</title>
      <link>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673395#M1061043</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;Try to do as follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SET &lt;EM style="font-weight: inherit; font-size: 13.1428575515747px; font-family: inherit;"&gt;vEnvironment&lt;/EM&gt; = trim('Development');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SET &lt;EM style="font-weight: inherit; font-size: 13.1428575515747px; font-family: inherit;"&gt;vQVD_Path&lt;/EM&gt; = '\\asdf\qerty\Qlikview\' &amp;amp; &lt;EM style="font-weight: inherit; font-size: 13.1428575515747px; font-family: inherit;"&gt;$(vEnvironment)&lt;/EM&gt; &amp;amp; '\QVD\TableFiles';&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It will be helpful..&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.1428575515747px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WanKi,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variables-in-Paths/m-p/673395#M1061043</guid>
      <dc:creator />
      <dc:date>2014-09-23T14:53:45Z</dc:date>
    </item>
  </channel>
</rss>

