<?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: Script file as a variable value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019971#M637343</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nothing vill be happen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variable will create a value with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"filename.qvs"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can chk that in cntrl+alt+V&amp;nbsp;&amp;nbsp;&amp;nbsp; variable overview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Mar 2016 08:57:29 GMT</pubDate>
    <dc:creator>Chanty4u</dc:creator>
    <dc:date>2016-03-18T08:57:29Z</dc:date>
    <item>
      <title>Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019970#M637342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to qlikview scripting, and I am going through an already built QVW to understand all the components and scripts. In one of the script files I see a statement 'Let vProperty = load_property.qvs'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand the difference between Let and Set, but I am struggling to understand what happens when you 'Let' a variable value, a script file? I've never seen anything similar in other scripting files before.&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>Fri, 18 Mar 2016 00:21:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019970#M637342</guid>
      <dc:creator />
      <dc:date>2016-03-18T00:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019971#M637343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nothing vill be happen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variable will create a value with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"filename.qvs"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can chk that in cntrl+alt+V&amp;nbsp;&amp;nbsp;&amp;nbsp; variable overview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 08:57:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019971#M637343</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-18T08:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019972#M637344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for more info&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14559"&gt;Variables&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 08:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019972#M637344</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-18T08:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019973#M637345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let will evaluate the expression on the right side of the =. Set simply makes the string on the right side of the = character the value of the variable.&lt;/P&gt;&lt;P&gt;SET vX =3+2; // vX contains the string '3+2'&lt;/P&gt;&lt;P&gt;LET vX =3+2; // vX contains the value 5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 09:00:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019973#M637345</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-18T09:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019974#M637346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Ctrl+Alt+V was very helpful understand what exactly is going on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 11:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019974#M637346</guid>
      <dc:creator />
      <dc:date>2016-03-18T11:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Script file as a variable value</title>
      <link>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019975#M637347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;welcome bro.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Chanty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 14:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-file-as-a-variable-value/m-p/1019975#M637347</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-18T14:58:16Z</dc:date>
    </item>
  </channel>
</rss>

