<?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: load variable in qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752406#M268131</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably the Include() technique or this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/45562"&gt;http://community.qlik.com/thread/45562&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2015 16:26:09 GMT</pubDate>
    <dc:creator>jpenuliar</dc:creator>
    <dc:date>2015-03-19T16:26:09Z</dc:date>
    <item>
      <title>load variable in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752403#M268128</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 have make a Excel sheet with default variables and load in Qlikview. Then I have make variables if default values in the variable overview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is: how can I load the default variables in the dashboard?&lt;/P&gt;&lt;P&gt;My second question is: How can a customer/user add data in the dashboard, for example the default value is 8 and the user add 9? How can I add?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752403#M268128</guid>
      <dc:creator />
      <dc:date>2015-03-19T15:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: load variable in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752404#M268129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use an Input Box to allow data entry for the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default variables can be added into the script with the LET or SET commands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set vHolidays = '2015/12/24', '2015/12/25', '2015/12/26';&amp;nbsp; // Holidays&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 16:09:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752404#M268129</guid>
      <dc:creator>Roop</dc:creator>
      <dc:date>2015-03-19T16:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: load variable in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752405#M268130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You already have the Excel (with variables) loaded into your application? or are you looking for a method to load them through Excel file? If later is true than you can use the following code to load your variables from Excel into your application:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TempVariable:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Variables, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[Source-Data\MROSKU\&lt;STRONG&gt;Variables.xlsx&lt;/STRONG&gt;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is &lt;STRONG&gt;Variables&lt;/STRONG&gt;);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For i = 0 to NoOfRows('TempVariable')-1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vName = Peek('Variables', i, 'TempVariable');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET $(vName) = Peek('Value', i, 'TempVariable');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Next i&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET i = Null();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LET vName = Null();&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drop Table TempVariable;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For addressing your second question, I think what &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/rupe"&gt;rupe&lt;/A&gt;&lt;/STRONG&gt; proposed will be a good option for you where you create an input box object for variables whose values can change. User can just input new values (and replace the existing one)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 16:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752405#M268130</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-03-19T16:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: load variable in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752406#M268131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably the Include() technique or this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/45562"&gt;http://community.qlik.com/thread/45562&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 16:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/load-variable-in-qlikview/m-p/752406#M268131</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2015-03-19T16:26:09Z</dc:date>
    </item>
  </channel>
</rss>

