<?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 Previous month count on selected month in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819109#M67149</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;While comparing the values between&amp;nbsp; selected month and previous month, the result of previous month showing as 0.&lt;/P&gt;&lt;P&gt;Expression for previous month is: count({&amp;lt;Month={'$(=getfieldselections(AddMonths(Date#(Month))),-1}&amp;gt;} EquipmentID) .&lt;/P&gt;&lt;P&gt;It would be great if any one can suggest me on the expression.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramki&lt;/P&gt;</description>
    <pubDate>Tue, 30 Nov 2021 18:17:33 GMT</pubDate>
    <dc:creator>Ramki</dc:creator>
    <dc:date>2021-11-30T18:17:33Z</dc:date>
    <item>
      <title>Previous month count on selected month</title>
      <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819109#M67149</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;While comparing the values between&amp;nbsp; selected month and previous month, the result of previous month showing as 0.&lt;/P&gt;&lt;P&gt;Expression for previous month is: count({&amp;lt;Month={'$(=getfieldselections(AddMonths(Date#(Month))),-1}&amp;gt;} EquipmentID) .&lt;/P&gt;&lt;P&gt;It would be great if any one can suggest me on the expression.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramki&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 18:17:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819109#M67149</guid>
      <dc:creator>Ramki</dc:creator>
      <dc:date>2021-11-30T18:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Previous month count on selected month</title>
      <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819122#M67150</link>
      <description>&lt;P&gt;first create variable for year and pre_month&lt;/P&gt;&lt;P&gt;varibales:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vYear&lt;/STRONG&gt;=Date(Addmonths(Date#(Max(your date field),'your date field format'),-1),'YYYY')&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vPrv_Month&lt;/STRONG&gt;=Date(Addmonths(Date#(Max(your date field),'your date field format'),-1),'MMM')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then write below exp&lt;/P&gt;&lt;P&gt;Count({&amp;lt;Year= {$(=vYear)},Month={$(=vPrior_Month)}&amp;gt;}&lt;SPAN&gt;EquipmentID&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 14:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819122#M67150</guid>
      <dc:creator>NitinK7</dc:creator>
      <dc:date>2021-07-01T14:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Previous month count on selected month</title>
      <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819134#M67152</link>
      <description>&lt;P&gt;There is no date filed, data loading from excel and&amp;nbsp; month , year are text fields which are entered manually in the excel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramki&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 14:40:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819134#M67152</guid>
      <dc:creator>Ramki</dc:creator>
      <dc:date>2021-07-01T14:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Previous month count on selected month</title>
      <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819154#M67155</link>
      <description>&lt;P&gt;try below , may be it will work, if not then please attach your excel file for year and month&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vYear&lt;/STRONG&gt;=Date(Addmonths(Date#(Max(Year),'YYYY'),-1),'YYYY')&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vPrv_Month&lt;/STRONG&gt;=Date(Addmonths(Date#(Max(Month),'MMM'),-1),'MMM')&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2021 14:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1819154#M67155</guid>
      <dc:creator>NitinK7</dc:creator>
      <dc:date>2021-07-01T14:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Previous month count on selected month</title>
      <link>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1821040#M67307</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;please close this topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramki&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 13:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Previous-month-count-on-selected-month/m-p/1821040#M67307</guid>
      <dc:creator>Ramki</dc:creator>
      <dc:date>2021-07-09T13:12:41Z</dc:date>
    </item>
  </channel>
</rss>

