<?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 Help with Set Analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675261#M592304</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a quick question that will hopefully save a lot of time if there is&amp;nbsp; a resolution.&lt;/P&gt;&lt;P&gt;I'm currently building a chart showing monthly data that is cumulative i.e. February = January + February.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I have:&lt;/P&gt;&lt;P&gt;if(ReportMonth='Jan',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Jan'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(ReportMonth='Feb',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Jan'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Feb'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can imagine this will quickly build up into a huge piece of script by the time December is reached (This is not the only line but can be used as an example individually for the script required).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to get something along the lines of:&lt;/P&gt;&lt;P&gt;if(ReportMonth='Feb',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth=&lt;STRONG&gt;{'Jan'+'Feb'}&lt;/STRONG&gt;&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be massively appreciated&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2020 11:27:44 GMT</pubDate>
    <dc:creator>DSTaylor</dc:creator>
    <dc:date>2020-02-13T11:27:44Z</dc:date>
    <item>
      <title>Help with Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675261#M592304</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a quick question that will hopefully save a lot of time if there is&amp;nbsp; a resolution.&lt;/P&gt;&lt;P&gt;I'm currently building a chart showing monthly data that is cumulative i.e. February = January + February.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I have:&lt;/P&gt;&lt;P&gt;if(ReportMonth='Jan',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Jan'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(ReportMonth='Feb',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Jan'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth={'Feb'}&amp;gt;} Value),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can imagine this will quickly build up into a huge piece of script by the time December is reached (This is not the only line but can be used as an example individually for the script required).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to get something along the lines of:&lt;/P&gt;&lt;P&gt;if(ReportMonth='Feb',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth=&lt;STRONG&gt;{'Jan'+'Feb'}&lt;/STRONG&gt;&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be massively appreciated&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 11:27:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675261#M592304</guid>
      <dc:creator>DSTaylor</dc:creator>
      <dc:date>2020-02-13T11:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675262#M592305</link>
      <description>&lt;P&gt;&lt;SPAN&gt;what about this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;rangesum( above( sum(Value), RowNo(TOTAL) ) )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 11:33:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675262#M592305</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2020-02-13T11:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675270#M592306</link>
      <description>&lt;P&gt;Hi will&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(ReportMonth='Feb',&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;ReportMonth=&lt;STRONG&gt;{'Jan','Feb'}&lt;/STRONG&gt;&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;work? Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 11:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675270#M592306</guid>
      <dc:creator>alex00321</dc:creator>
      <dc:date>2020-02-13T11:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675275#M592307</link>
      <description>&lt;P&gt;Check out &lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-As-Of-Table/ba-p/1466130" target="_blank" rel="noopener"&gt;The As-Of Table&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 11:59:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1675275#M592307</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-02-13T11:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1683826#M592308</link>
      <description>&lt;P&gt;You have quite a few replies, just wanted to be sure you circle back to your post and if any did help, please be sure to close out the thread by using the Accept as Solution button on the post(s) that were helpful in solving your issue.&amp;nbsp; If you are still working on things, please leave an update on what you still need.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 15:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Set-Analysis/m-p/1683826#M592308</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-03-11T15:04:03Z</dc:date>
    </item>
  </channel>
</rss>

