<?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: Variable in App to be used in Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571073#M442131</link>
    <description>If you were in qlikview you could use input fucntion which i dont beleive you can use qlik sense.&lt;BR /&gt;Another option (apart from the excel) is to use set analysis for this but you would need to use the set analysis in every chart. but user experience would be better. but you will need to load everything into the app not sure what your data volume is</description>
    <pubDate>Thu, 18 Apr 2019 13:53:01 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2019-04-18T13:53:01Z</dc:date>
    <item>
      <title>Variable in App to be used in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1570986#M442126</link>
      <description>&lt;P&gt;Good Afternoon.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to enable a User to specify the number of Month's data to load. I have a variable in the script "SET v_Reload_Months = '24';" that gets used in the LOAD script,&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD * FROM [TRANSACTIONS_ALL.qvd](qvd)&lt;BR /&gt;WHERE&amp;nbsp; (Monthstart(Date) &amp;lt;= monthstart(today()) and Monthstart(Date) &amp;gt;= monthstart(today(),-'$(v_Reload_Months)'));&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works fine at reload time. I am looking for a way to let the user change the variable in the app and then reload the app for the new number of months. The variable is visible in the app but I don't know how to get the value back to the script!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 11:55:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1570986#M442126</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2019-04-18T11:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Variable in App to be used in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571018#M442127</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In order to let the user updating a varaible you can keep an excel file in a shared folder with a table of 1 row (header = Reload_Months, and the first row will be update by the user). You can read this data with Load statement and save the number of months as varaible using peek function (Let v_Reload_Months = peek(...).&lt;BR /&gt;If this solution seems to answer your need I can share an example of how to implement it.&lt;BR /&gt;&lt;BR /&gt;Best regards</description>
      <pubDate>Thu, 18 Apr 2019 12:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571018#M442127</guid>
      <dc:creator>Tomer_St</dc:creator>
      <dc:date>2019-04-18T12:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Variable in App to be used in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571051#M442128</link>
      <description>&lt;P&gt;Hi.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. If I understand you correctly, the user needs to update the spreadsheet every time they want to change the variable value? This is in a Forecasting environment and they may want to run up to 20 simulations in a day. May be a bit cumbersome. I will give it a try.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 13:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571051#M442128</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2019-04-18T13:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Variable in App to be used in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571064#M442129</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you looking for something like this?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Development/Parameters-in-script-prompt/td-p/441106" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Development/Parameters-in-script-prompt/td-p/441106&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 13:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571064#M442129</guid>
      <dc:creator>arpitkharkia</dc:creator>
      <dc:date>2019-04-18T13:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Variable in App to be used in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571073#M442131</link>
      <description>If you were in qlikview you could use input fucntion which i dont beleive you can use qlik sense.&lt;BR /&gt;Another option (apart from the excel) is to use set analysis for this but you would need to use the set analysis in every chart. but user experience would be better. but you will need to load everything into the app not sure what your data volume is</description>
      <pubDate>Thu, 18 Apr 2019 13:53:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-in-App-to-be-used-in-Script/m-p/1571073#M442131</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-18T13:53:01Z</dc:date>
    </item>
  </channel>
</rss>

