<?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: GetFieldSelections within date range in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369797#M418770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=&lt;STRONG&gt;max&lt;/STRONG&gt;(From_Accounting_Month))&amp;lt;=$(=&lt;STRONG&gt;max&lt;/STRONG&gt;(To_Accounting_Month))'}&amp;gt;} [INDEMNITY])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Jun 2017 10:52:28 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2017-06-14T10:52:28Z</dc:date>
    <item>
      <title>GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369790#M418763</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;I have a filter 'WC_Claims', based on the option selected on filter I am displaying INDEMNITY, MEDICAL &amp;amp; GROSS_AMOUNT values using&lt;/P&gt;&lt;P&gt;GetFieldSelections within year range (start and end year taken into variables Eg. 2015 to 2016) correctly as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(GetFieldSelections(WC_Claims, '|') = 'Indemnity',&lt;/P&gt;&lt;P&gt;sum({&amp;lt;YEAR={'&amp;gt;=$(=vStartYear)&amp;lt;=$(=vEndYear)'}&amp;gt;}[INDEMNITY]),&lt;/P&gt;&lt;P&gt;If(GetFieldSelections(WC_Claims, '|') = 'Medical',&lt;/P&gt;&lt;P&gt;sum({&amp;lt;YEAR={'&amp;gt;=$(=vStartYear)&amp;lt;=$(=vEndYear)'}&amp;gt;} [MEDICAL]),&lt;/P&gt;&lt;P&gt;sum({&amp;lt;YEAR={'&amp;gt;=$(=vStartYear)&amp;lt;=$(=vEndYear)'}&amp;gt;} GROSS_AMOUNT))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I am trying to simulate the same logic for Month range (From and To Accounting month taken from multi-box filters Eg. Mar-2015 to Mar-2016) using below approach. it is not working. Getting all month's values irrespective of From and To month range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(GetFieldSelections(WC_Claims, '|') = 'Indemnity',&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [INDEMNITY]),&lt;/P&gt;&lt;P&gt;If(GetFieldSelections(WC_Claims, '|') = 'Medical',&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [MEDICAL]),&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure what going wrong. Can someone pls help me. Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: If I directly use the below expression, it is working correctly&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369790#M418763</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-14T10:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369791#M418764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then, I am not sure the use of Pipe( | ) symbol this case, May be try this? I just remove the symbol in syntactically &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(GetFieldSelections(WC_Claims) = 'Indemnity',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [INDEMNITY]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(GetFieldSelections(WC_Claims) = 'Medical',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [MEDICAL]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369791#M418764</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-14T10:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369792#M418765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;Still the same result, Getting all values irrespective of From and To date range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need data within the date range, Is there any alternate way I can use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369792#M418765</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-14T10:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369793#M418766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The above condition what i gave is If we selected from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WC_Claims value called Indemnity, Then we have to show first condition. Just use this and please select Indemnity from WC_Claims. Whether it is working or not.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(GetFieldSelections(WC_Claims) = 'Indemnity',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [INDEMNITY]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369793#M418766</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-14T10:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369794#M418767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Anil, When I bring this condition(Indemnity alone and Full condition) in expression and enable the column, I'm seeing data for all month's, not just values within the range.&lt;/P&gt;&lt;P&gt;same happening upon Indemnity option selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369794#M418767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-14T10:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369795#M418768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you able to provide the MOC for testing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:47:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369795#M418768</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-14T10:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369796#M418769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Security guidelines restrict me to upload file with sample data, I will prepare the data in-line and provide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369796#M418769</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-14T10:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369797#M418770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=&lt;STRONG&gt;max&lt;/STRONG&gt;(From_Accounting_Month))&amp;lt;=$(=&lt;STRONG&gt;max&lt;/STRONG&gt;(To_Accounting_Month))'}&amp;gt;} [INDEMNITY])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:52:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369797#M418770</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-06-14T10:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369798#M418771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal,&lt;/P&gt;&lt;P&gt;Still the same result, Getting all month's values upon enabling the column and Indemnity option selection&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369798#M418771</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-14T11:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369799#M418772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the format of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ACCOUNTING_MONTH,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From_Accounting_Month and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;To_Accounting_Month are all these fields in proper format. Take all these fields in list box check they are right aligned. if so they are in proper format&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369799#M418772</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-06-14T11:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369800#M418773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a format difference between &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;ACCOUNTING_MONTH&lt;/STRONG&gt; and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;From_Accounting_Month&lt;/STRONG&gt; and &lt;STRONG&gt;To&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;_Accounting_Month&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you can try to simplify your 1st expression to this&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Sum({&amp;lt;YEAR={'&amp;gt;=$(=vStartYear)&amp;lt;=$(=vEndYear)'}&amp;gt;} &lt;SPAN style="color: #ff0000;"&gt;$(=Upper(&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;GetFieldSelections(WC_Claims))&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369800#M418773</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-06-14T11:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369801#M418774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no format difference between &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;ACCOUNTING_MONTH&lt;/STRONG&gt; and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;From_Accounting_Month&lt;/STRONG&gt; and &lt;STRONG&gt;To&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;_Accounting_Month.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;The expression which I am using is working on 11.2 SR5 perfectly with filter selections, but not working on 11.2 SR13(installed version on my machine).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;What changes should I do to make the same expression work on my machine ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:17:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369801#M418774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T07:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369802#M418775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to give format of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ACCOUNTING_MONTH to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From_Accounting_Month &amp;amp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;To_Accounting_Month&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=&lt;STRONG&gt;date(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;max&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(From_Accounting_Month),&lt;STRONG&gt;'MMM-YYYY'&lt;/STRONG&gt;))&amp;lt;=$(=&lt;STRONG&gt;date(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;max&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(To_Accounting_Month),&lt;STRONG&gt;'MMM-YYYY'&lt;/STRONG&gt;))'}&amp;gt;} [INDEMNITY])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Note: I have assumed &lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MMM-YYYY, give actual format&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:23:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369802#M418775</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-06-16T07:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369803#M418776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. The format of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ACCOUNTING_MONTH, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From_Accounting_Month &amp;amp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;To_Accounting_Month are all same '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MMM-YYYY&lt;/STRONG&gt;&lt;/SPAN&gt;'.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: If I directly use the below expression, it is working correctly.&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below&amp;nbsp; whole expression is not working on SR13, but working on SR5 &amp;amp; 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(GetFieldSelections(WC_Claims) = 'Indemnity',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [INDEMNITY]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(GetFieldSelections(WC_Claims) = 'Medical',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [MEDICAL]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Should I have include any additional parameter in GetFieldSelections to make it work for SR13.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:30:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369803#M418776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T07:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369804#M418777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try with Match function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(&lt;STRONG&gt;Match&lt;/STRONG&gt;(GetFieldSelections(WC_Claims) = 'Indemnity',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WC_Claims&lt;/SPAN&gt;),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [INDEMNITY]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(&lt;STRONG&gt;Match&lt;/STRONG&gt;(GetFieldSelections(WC_Claims) = 'Medical',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WC_Claims&lt;/SPAN&gt;),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} [MEDICAL]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({&amp;lt;ACCOUNTING_MONTH={'&amp;gt;=$(=GetFieldSelections(From_Accounting_Month))&amp;lt;=$(=GetFieldSelections(To_Accounting_Month))'}&amp;gt;} GROSS_AMOUNT))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PS - Here, do you select any value from WC_Claims?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 08:34:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369804#M418777</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-16T08:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369805#M418778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share the script lines for the three dates field in the script?&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ACCOUNTING_MONTH,&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;From_Accounting_Month&lt;/STRONG&gt; and &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;To&lt;/STRONG&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;_Accounting_Month&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 08:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369805#M418778</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-06-16T08:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369806#M418779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo() AS RowNo,&lt;/P&gt;&lt;P&gt;Date(ACCOUNTING_MONTH, 'MMM-YYYY') AS ACCOUNTING_MONTH&lt;/P&gt;&lt;P&gt;FROM [Data.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Accounting_Start_Month:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Distinct(Date(ACCOUNTING_MONTH, 'MMM-YYYY')) as From_Accounting_Month&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Accounting_End_Month:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;distinct(Date(ACCOUNTING_MONTH, 'MMM-YYYY')) as To_Accounting_Month&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 09:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369806#M418779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T09:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369807#M418780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Yes I select values from WC_Claims filter.&amp;nbsp; WC_Claims &lt;/SPAN&gt;Filter selection value is coming correctly from initial time, but the problem is values are not coming within the From and To month range selected using GetFieldSelections. &lt;/P&gt;&lt;P&gt;I am not sure what's wrong with SR13, my expressions are working correctly on SR 5 and SR6 systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any alternate function to GetFieldSelections&amp;nbsp; to select the date/month values from listbox/multibox filters ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Production access point server is SR13.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 09:42:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369807#M418780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T09:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369808#M418781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But, As you mentioned you got the result when you use plane aggregation with set analysis. The better approach if you provide sample application to look the behavior. I am not sure what was the cause over there. If it is working that should work. Could be experts can help you&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="167097" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/167097_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 09:47:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369808#M418781</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-16T09:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: GetFieldSelections within date range</title>
      <link>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369809#M418782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes If I use plane aggregation with set analysis, it is working. When I bring in WC_Claims filter into picture and select WC_Claims filter, I'm getting all month's values of WC_claims filter selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expectation is to get values of WC_claims filter selection within the selected month range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm in secured work location, uploading any sample data file will be risk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 10:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/GetFieldSelections-within-date-range/m-p/1369809#M418782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T10:03:02Z</dc:date>
    </item>
  </channel>
</rss>

