<?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: Pivot table help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437936#M811963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Essentially just trying to count Row Labels when items are OT and IF. Output should be the same as attached above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2017 16:09:14 GMT</pubDate>
    <dc:creator>joshrussin</dc:creator>
    <dc:date>2017-09-29T16:09:14Z</dc:date>
    <item>
      <title>Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437925#M811952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am making a pivot table showing On Time In Full...&lt;/P&gt;&lt;P&gt;I have gotten to where I need to get the sum of In Full. &lt;/P&gt;&lt;P&gt;for my pivot table, this is my expression for In Full:&lt;/P&gt;&lt;P&gt;if((sum([Delivery quantity_OTIF]) - sum([Order Quantity_OTIF])) &amp;gt;= 0, 1, 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I am trying to get the sum of all of that data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying with this equation:&lt;/P&gt;&lt;P&gt;Sum(if((sum([Delivery quantity_OTIF]) - sum([Order Quantity_OTIF])) &amp;gt;= 0, 1, 0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I keep getting an error saying "Nested aggregation not allowed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any tips or help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just a little confused I guess because this equation DID work:&lt;/P&gt;&lt;P&gt;sum(if((num(date([Ac GI date_OTIF]))-num(Date([Pl GI date_OTIF]))) &amp;lt;= 0,1,0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437925#M811952</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437926#M811953</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;the second equation work because date() is not an aggregation function, it is a scalar function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read this: &lt;A href="https://community.qlik.com/qlik-blogpost/3744"&gt;Aggregations and Function Classes&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make it works, you should add the Aggr() function between the two Sums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this:&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;Sum(...)&lt;/P&gt;&lt;P&gt;Sum(Aggr(Sum(...),...))&lt;/P&gt;&lt;P&gt;Sum(Aggr(Sum(Aggr(Sum(...),...)),...))&lt;/P&gt;&lt;P&gt;Sum(Aggr(Sum(Aggr(Sum(Aggr(Sum(...),...)),...)),...))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;YB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:50:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437926#M811953</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2017-09-28T15:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437927#M811954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this, but it doesn't actually show the sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Aggr((sum([Delivery quantity_OTIF]) - sum([Order Quantity_OTIF])) &amp;gt;= 0, 1, 0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 20:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437927#M811954</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-28T20:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437928#M811955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to add the dimensions to the Aggr list .&lt;/P&gt;&lt;P&gt;Please provide a sample qvw file with the expected output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 20:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437928#M811955</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2017-09-28T20:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437929#M811956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for trying to help, here is the files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are able to do this, the results will vary because excel only pulls the 1st 1000 rows from the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 20:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437929#M811956</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-28T20:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437930#M811957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you expecting following?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="178091" alt="PivotTbl.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178091_PivotTbl.PNG" style="width: 620px; height: 274px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Formula&lt;/P&gt;&lt;P&gt;=Aggr(if(sum([Delivery quantity_OTIF]) - sum([Order Quantity_OTIF]) &amp;gt;= 0, 1, 0), SaTy_OTIF)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 21:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437930#M811957</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-28T21:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437931#M811958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="KPI_0018.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178084_KPI_0018.jpg" style="height: 271px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Somewhere around these results. At least this much. The results from Qlik may be a little higher. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 21:41:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437931#M811958</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-28T21:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437932#M811959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Material_OTIF,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Batch_OTIF,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Delivery quantity_OTIF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Order Quantity_OTIF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Delivery quantity_OTIF" - "Order Quantity_OTIF" as "Qty IF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delivery_OTIF,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Pl GI date_OTIF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Ac GI date_OTIF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SU_OTIF,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sales Doc_OTIF",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SaTy_OTIF&lt;/P&gt;&lt;P&gt;FROM [lib://DataFile/OTIF Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is [RAW DATA]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum(If([Qty IF]&amp;gt;=0,1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="178095" alt="PivotTbl2.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178095_PivotTbl2.PNG" style="width: 620px; height: 378px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 22:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437932#M811959</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-28T22:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437933#M811960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how did I not think of this....&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 03:17:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437933#M811960</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-29T03:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437934#M811961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to do the Sum of OTIF now and getting the same message. How would you go about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if((&lt;/P&gt;&lt;P&gt;(sum(if((num(date([Ac GI date_OTIF]))-num(Date([Pl GI date_OTIF]))) &amp;lt;= 0,1,0)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum(If([Qty IF]&amp;gt;=0,1,0))) ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,0))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 13:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437934#M811961</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-29T13:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437935#M811962</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;The issue is that sum operation is being done on another sum. That is where it is nested...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;sum&lt;/SPAN&gt;(if((&lt;/P&gt;&lt;P&gt;(&lt;SPAN style="color: #0000ff;"&gt;sum&lt;/SPAN&gt;(if((num(date([Ac GI date_OTIF]))-num(Date([Pl GI date_OTIF]))) &amp;lt;= 0,1,0)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum(If([Qty IF]&amp;gt;=0,1,0))) ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please advise what you are trying to do? let me understand that and we can try to find a solution to it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 15:19:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437935#M811962</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-29T15:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437936#M811963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Essentially just trying to count Row Labels when items are OT and IF. Output should be the same as attached above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 16:09:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437936#M811963</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-09-29T16:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437937#M811964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm still not sure what exactly the calculation should be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I'm thinking based on expression you have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this will help and if I can help you further&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;DataFile1:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Material_OTIF,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Batch_OTIF,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Delivery quantity_OTIF",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Order Quantity_OTIF",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Delivery quantity_OTIF" - "Order Quantity_OTIF" as "Qty IF",&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(("Delivery quantity_OTIF" - "Order Quantity_OTIF") &amp;gt;= 0, 1, 0) as "Qty IF if Positive",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If((num(date([Ac GI date_OTIF]))-num(Date([Pl GI date_OTIF]))) &amp;lt;= 0, 1, 0) as "compare AC PI Date",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delivery_OTIF,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Pl GI date_OTIF",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Ac GI date_OTIF",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SU_OTIF,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Sales Doc_OTIF",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SaTy_OTIF&lt;BR /&gt;FROM [lib://DataFile/OTIF Data.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is [RAW DATA]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;NoConcatenate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;DataFile2:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;Load &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt; Sum("Qty IF if Positive") as "Sum Qty IF if Positive",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum("compare AC PI Date") as "Sum compare AC PI Date",&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SaTy_OTIF&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;Resident DataFile1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG style="color: #0000ff;"&gt;Group By SaTy_OTIF;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 16:55:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437937#M811964</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-29T16:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437938#M811965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if([Qty IF if Positive] = [compare AC PI Date],1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you happen to know why the data shows differently?&lt;/P&gt;&lt;P&gt;Meaning, the excel pivot tables vs the Qlik pivot tables. They are the same data, I thought it was because Excel only looks at the 1st 1000 rows, but apparently that's not it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437938#M811965</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-10-03T20:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437939#M811966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm away from my system till tomorrow. When you say it shows differently, I'm not getting what the difference is and could be. It could be due to difference in formula for excel and QV calculations, data arrangement, but I'm just guessing until I can see both of them together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So are QV values correct or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2017 11:36:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437939#M811966</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-10-04T11:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437940#M811967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My client says that their numbers are correct via the excel file. I will be going over them again throughout the week. I believe the QV values are correct though. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2017 14:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437940#M811967</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-10-04T14:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437941#M811968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I'm kind of confused now. How can there be more OnTimeInFull items than items that are just OnTime?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="KPI_0022.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178585_KPI_0022.jpg" style="height: 125px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Attached is the updated QV file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2017 15:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437941#M811968</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-10-04T15:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437942#M811969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm checking. Will update you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2017 19:52:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437942#M811969</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-10-05T19:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437943#M811970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it has to do with formula you were using for following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if((&lt;/P&gt;&lt;P&gt;(sum(if((num(date([Ac GI date_OTIF]))-num(Date([Pl GI date_OTIF]))) &amp;lt;= 0,1,0)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Sum(If([Qty IF]&amp;gt;=0,1,0))) ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if([Qty IF if Positive] = [compare AC PI Date],1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if this matches with what you originally intended to calculate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was not able to understand your original calculation but you thought above worked for you. Please check that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2017 20:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437943#M811970</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-10-05T20:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table help</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437944#M811971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That calculation seems right, if you look at the excel file and look at the pivot table on the left hand side of "Comp Pivot", that data doesn't match up to the "Comp Pivot" in Qlik. The raw pivot, from what I can tell, matches. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2017 20:18:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table-help/m-p/1437944#M811971</guid>
      <dc:creator>joshrussin</dc:creator>
      <dc:date>2017-10-05T20:18:23Z</dc:date>
    </item>
  </channel>
</rss>

