<?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: Mixing Timeframes on the same Pivot in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635199#M1094747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael for the support!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the adjustment but the problem now is regarding the total row...it's summing up either actuals or forecast, depending which one I state last in the string:&lt;/P&gt;&lt;P&gt;if(Month&amp;gt;7,sum(Forecast),sum(Actual))&amp;nbsp; the total row give me the sum of Actual&lt;/P&gt;&lt;P&gt;if(Month&amp;lt;=7,sum(Actual),sum(Forecast))&amp;nbsp; the total row give me the sum of Forecast&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The target is to have a total row of 7 months Actual + 5 months Forecast&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2014 18:10:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-05-16T18:10:54Z</dc:date>
    <item>
      <title>Mixing Timeframes on the same Pivot</title>
      <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635197#M1094745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I’m quite new on QV and I’m currently struggling trying to mix different time frames on the same pivot table. Is that possible?&lt;/P&gt;&lt;P&gt;Basically I need to show the Actuals by month and compare with the annual Budget (figure attached).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 19:02:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635197#M1094745</guid>
      <dc:creator />
      <dc:date>2014-05-15T19:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Mixing Timeframes on the same Pivot</title>
      <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635198#M1094746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to use calculated expression for Month.&amp;nbsp; Assuming it is dual (Jan is 1, Feb is 2,...), it could have this look:&lt;/P&gt;&lt;P&gt;=if(Month&amp;gt;month(today()), 'Forecast ' &amp;amp; Month, Month)&lt;/P&gt;&lt;P&gt;And expressions also should be conditional based on month, calculating Actual ot Budget&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 19:59:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635198#M1094746</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-15T19:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mixing Timeframes on the same Pivot</title>
      <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635199#M1094747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael for the support!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the adjustment but the problem now is regarding the total row...it's summing up either actuals or forecast, depending which one I state last in the string:&lt;/P&gt;&lt;P&gt;if(Month&amp;gt;7,sum(Forecast),sum(Actual))&amp;nbsp; the total row give me the sum of Actual&lt;/P&gt;&lt;P&gt;if(Month&amp;lt;=7,sum(Actual),sum(Forecast))&amp;nbsp; the total row give me the sum of Forecast&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The target is to have a total row of 7 months Actual + 5 months Forecast&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 18:10:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635199#M1094747</guid>
      <dc:creator />
      <dc:date>2014-05-16T18:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Mixing Timeframes on the same Pivot</title>
      <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635200#M1094748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be a little different.&amp;nbsp; In this case:&lt;/P&gt;&lt;P&gt;sum(if(Month&amp;gt;7,Forecast,Actual))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 18:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635200#M1094748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-16T18:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Mixing Timeframes on the same Pivot</title>
      <link>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635201#M1094749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked! Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2014 18:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Mixing-Timeframes-on-the-same-Pivot/m-p/635201#M1094749</guid>
      <dc:creator />
      <dc:date>2014-05-16T18:22:33Z</dc:date>
    </item>
  </channel>
</rss>

