<?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: Selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765766#M1027474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For zero intervention on the script you have this approach (attached) using alternate states.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you find this helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 Feb 2015 15:05:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-02-22T15:05:13Z</dc:date>
    <item>
      <title>Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765761#M1027469</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;As per my requirement whenever i select a month , the bar should be available for only the month selected and the value should remain constant. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used rangesum in my expression ( we can also use full accumulation ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached sample application . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example : if i select month of may , value should be 2620 with single bar. &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>Fri, 20 Nov 2020 18:02:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765761#M1027469</guid>
      <dc:creator>simsondevadoss</dc:creator>
      <dc:date>2020-11-20T18:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765762#M1027470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could do it on the script like this and then use sum(value) as expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD month,rangesum(peek(value),value_tmp) as value;&lt;/P&gt;&lt;P&gt;LOAD month,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; count(SR_ID) as value_tmp&lt;/P&gt;&lt;P&gt;Resident MasterData&lt;/P&gt;&lt;P&gt;Group by month&lt;/P&gt;&lt;P&gt;Order by month;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 08:39:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765762#M1027470</guid>
      <dc:creator />
      <dc:date>2015-02-21T08:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765763#M1027471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your data having ASSIGNED DATEs from January 2012, so when you group them by month i.e. Jan... the SR_ID count for Jan is actually for 2012, 2013 and 2014 which could be (may be) wrong..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apologize if you are intended to show by the same way you have shown in bar chart...&lt;/P&gt;&lt;P&gt;If not, you need to create MonthYear or YearMonth field instead of only Month field...&lt;/P&gt;&lt;P&gt;You can create the same as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(MonthStart(FLOOR(TimeStamp(ASSIGNED_DATE))),'YYYYMM') as YearMonth &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use this field to create the desired result....&lt;/P&gt;&lt;P&gt;if 201405 selected, you should get date from 201401 to 201405 in a single bar...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 11:23:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765763#M1027471</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-02-21T11:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765764#M1027472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to get it in the front end itself ? instead of aggregating in the back end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Simson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2015 13:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765764#M1027472</guid>
      <dc:creator>simsondevadoss</dc:creator>
      <dc:date>2015-02-22T13:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765765#M1027473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Obviously.... !&lt;/P&gt;&lt;P&gt;You need to create YearMonth in backend and use the dimension in front end to achieve the result...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2015 14:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765765#M1027473</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-02-22T14:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765766#M1027474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For zero intervention on the script you have this approach (attached) using alternate states.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you find this helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2015 15:05:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765766#M1027474</guid>
      <dc:creator />
      <dc:date>2015-02-22T15:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765767#M1027475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nuno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what if user selects more than one month ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Simson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 04:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765767#M1027475</guid>
      <dc:creator>simsondevadoss</dc:creator>
      <dc:date>2015-02-23T04:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Selection/m-p/765768#M1027476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently if the user selects more than one value it will show all moths.This doesn't work on more than one selection (for that you need the script approach).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My suggestion is that you use&lt;/P&gt;&lt;P&gt;=getselectedcount(month)&amp;lt;2&lt;/P&gt;&lt;P&gt;as the calculation condition and in the error message for calculation condition unfulfilled put something like:&lt;/P&gt;&lt;P&gt;'Please select only one month'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Nuno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2015 22:08:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection/m-p/765768#M1027476</guid>
      <dc:creator />
      <dc:date>2015-02-23T22:08:39Z</dc:date>
    </item>
  </channel>
</rss>

