<?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: How to store a field selection value from UI to backend script variable??? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236049#M393166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry your suggestion wont work for dynamically changing year value. So I created all the variables from UI Level only rather than Script Level. It works for my scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Nov 2016 11:44:24 GMT</pubDate>
    <dc:creator>chandu441</dc:creator>
    <dc:date>2016-11-29T11:44:24Z</dc:date>
    <item>
      <title>How to store a field selection value from UI to backend script variable???</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236047#M393164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing typical requirement like,,,&lt;/P&gt;&lt;P&gt;user will select the value from "Year: ListBox from that I have to save the Year Selected value as a variable in script level. So that I can define PastYear Value.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;LET vFPrevYear = vFYEAR - 1;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Same as like that I have to store Quarter Selected Values from list based on that I will get the values&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;vPrevQtr&amp;nbsp; &amp;amp; &lt;SPAN style="font-size: 13.3333px;"&gt;vPrevQtrYear.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF vQuarter &amp;gt; 1 THEN&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LET vPrevQtr = vQuarter1 - 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LET vPrevQtrYear = vFYEAR1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ELSE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LET vPrevQtr = 4;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LET vPrevQtrYear =&amp;nbsp; vFYEAR1 - 1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;END IF;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As of now i am saving the values from front end using "=GetFieldSelections(YEAR1)". but it is not getting me the output from script side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me a solution which will helpful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all of you....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Nov 2016 11:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236047#M393164</guid>
      <dc:creator>chandu441</dc:creator>
      <dc:date>2016-11-28T11:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to store a field selection value from UI to backend script variable???</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236048#M393165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Set Variable action for your Sheet trigger called OnLeaveSheet.&lt;/P&gt;&lt;P&gt;See below. Just add the desired value or field value that the variable needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QVpost.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/145025_QVpost.PNG" style="height: 469px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Nov 2016 16:25:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236048#M393165</guid>
      <dc:creator>b_garside</dc:creator>
      <dc:date>2016-11-28T16:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to store a field selection value from UI to backend script variable???</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236049#M393166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry your suggestion wont work for dynamically changing year value. So I created all the variables from UI Level only rather than Script Level. It works for my scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2016 11:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-store-a-field-selection-value-from-UI-to-backend-script/m-p/1236049#M393166</guid>
      <dc:creator>chandu441</dc:creator>
      <dc:date>2016-11-29T11:44:24Z</dc:date>
    </item>
  </channel>
</rss>

