<?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 Input variables before loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163986#M501278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found what I was looking for in Ralfs Becher's TwitView Qlikview:&lt;BR /&gt;&lt;BR /&gt;Here: &lt;A href="http://community.qlik.com/media/p/171902.aspx"&gt;http://community.qlik.com/media/p/171902.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This file has a Inputbox where you can enter a variabel and when you reload it uses those variables in to get the wanted information from your datasources.&lt;/P&gt;&lt;P&gt;For those who are interested take a look at the document and see what it does.&lt;BR /&gt;&lt;BR /&gt;Follow vScreenname (vSN) in the script.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Let vSN = lower('$(vScreenname)');&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Apr 2011 11:52:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-04-04T11:52:03Z</dc:date>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163979#M501271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear specialits,&lt;/P&gt;&lt;P&gt;Is it possible to let the load script with input variables?&lt;BR /&gt;&lt;BR /&gt;What I want is that when you open the Qlikview document there will be a input filed to fill in the variable.&lt;BR /&gt;Then make a Load-button, when you press the button the loaad script will be using the variabel.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Input vYear = 2009&lt;/P&gt;&lt;P&gt;And then use vYear in the loadscript like :&lt;/P&gt;&lt;P&gt;Load *&lt;BR /&gt;SQL SELECT&lt;BR /&gt;FROM TABLE&lt;BR /&gt;Where Year = '$(vYear)'&lt;/P&gt;&lt;P&gt;How do I set the variable (vYear) before loading?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 10:47:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163979#M501271</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-16T10:47:17Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163980#M501272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i think in qlikview dynamic loading is not possible. am not sure..&lt;/P&gt;&lt;P&gt;one thing u do, load whole data and put in hide mode. when the user give the input as 2009 and clik on a button then we can display the corresponding data.&lt;/P&gt;&lt;P&gt;think it once..&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;A'run'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:43:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163980#M501272</guid>
      <dc:creator />
      <dc:date>2011-03-16T11:43:30Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163981#M501273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply, nice work around, but that is not going to work for me in this case.&lt;BR /&gt;Also I want to use this method to reduce the data, but that is not the mean reason.&lt;BR /&gt;&lt;BR /&gt;Anybody else has an idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:50:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163981#M501273</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-16T11:50:32Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163982#M501274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it two ways - using a variable or with an exists test based on the value in an XLS (for example). You may want to try both to see what offers the best performance.&lt;/P&gt;&lt;P&gt;Creating a variable to test against:&lt;/P&gt;&lt;P&gt;tParam:&lt;BR /&gt;LOAD Year&lt;BR /&gt;FROM paramfile.xls (biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;LET vYear = peek('Year', 0, tParam);&lt;/P&gt;&lt;P&gt;DROP TABLE tParam;&lt;/P&gt;&lt;P&gt;Load *&lt;BR /&gt;SQL SELECT&lt;BR /&gt;FROM TABLE&lt;BR /&gt;WHERE Year = $(vYear);&lt;/P&gt;&lt;P&gt;or using exists test&lt;/P&gt;&lt;P&gt;tParam:&lt;BR /&gt;LOAD ParamYear&lt;BR /&gt;FROM paramfile.xls (biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;Load *&lt;BR /&gt;SQL SELECT&lt;BR /&gt;FROM TABLE&lt;BR /&gt;WHERE exists(ParamYear, Year);&lt;/P&gt;&lt;P&gt;DROP TABLE tParam;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:51:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163982#M501274</guid>
      <dc:creator />
      <dc:date>2011-03-16T11:51:12Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163983#M501275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Than ks Gordon,&lt;/P&gt;&lt;P&gt;That is an idea, I am going to take a look at this.&lt;BR /&gt;&lt;BR /&gt;Do you think there is a way to make Qlikviewwrite this varaible to a file?&lt;BR /&gt;&lt;BR /&gt;That way I could make first "page" where the user fills the variable(s)&lt;BR /&gt;then make an action which writes the paramfile and then perform the load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 11:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163983#M501275</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-16T11:59:37Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163984#M501276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;....or why not just use an input field with vYear?&lt;/P&gt;&lt;P&gt;I am assuming you are talking about someone reloading the document through QV client because you cannot force a reload through the plugin (at least not directly)...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 12:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163984#M501276</guid>
      <dc:creator />
      <dc:date>2011-03-16T12:01:54Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163985#M501277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No the Year input is just an example.&lt;BR /&gt;I need this variable before loading because when I load all it ruines my data.&lt;BR /&gt;This has to do with different formats in different datasources.&lt;BR /&gt;I want to get the right information from the right datasource using this input variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 12:21:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163985#M501277</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-16T12:21:53Z</dc:date>
    </item>
    <item>
      <title>Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163986#M501278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found what I was looking for in Ralfs Becher's TwitView Qlikview:&lt;BR /&gt;&lt;BR /&gt;Here: &lt;A href="http://community.qlik.com/media/p/171902.aspx"&gt;http://community.qlik.com/media/p/171902.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This file has a Inputbox where you can enter a variabel and when you reload it uses those variables in to get the wanted information from your datasources.&lt;/P&gt;&lt;P&gt;For those who are interested take a look at the document and see what it does.&lt;BR /&gt;&lt;BR /&gt;Follow vScreenname (vSN) in the script.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Let vSN = lower('$(vScreenname)');&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 11:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163986#M501278</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-04-04T11:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163987#M501279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might be the solution to what I was looking for. Unfortuntately, the link is not working anymore. Any chance to get the correct link?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2016 14:37:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163987#M501279</guid>
      <dc:creator />
      <dc:date>2016-08-09T14:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163988#M501280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. I'm in the same boat as Daniela above. Any chance somebody could post a working link for this? It looks to be exactly what i'm looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Glyn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2016 09:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163988#M501280</guid>
      <dc:creator />
      <dc:date>2016-08-30T09:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163989#M501281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Glyn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added the following to my script and it worked for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/136136_pastedImage_2.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style=": ; font-size: 10pt;"&gt;Let&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vSystemID&lt;/EM&gt;&lt;/STRONG&gt;=&lt;SPAN style="color: #0000ff;"&gt;Input&lt;/SPAN&gt;('Enter required System ID', 'System ID');&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In addition, you have to create your variable (Settings - Variable Overview).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When starting a reload, an Input box pops up before loading any data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/136137_pastedImage_3.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope this is helpful.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Daniela&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 12:13:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163989#M501281</guid>
      <dc:creator />
      <dc:date>2016-08-31T12:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Input variables before loading</title>
      <link>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163990#M501282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 10:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-variables-before-loading/m-p/163990#M501282</guid>
      <dc:creator />
      <dc:date>2016-09-29T10:25:39Z</dc:date>
    </item>
  </channel>
</rss>

