<?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: Hiding Partial Sum in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485445#M181375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Vishwaranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hw u did tht, viewed ur application bt didn understand????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jun 2013 06:30:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-19T06:30:34Z</dc:date>
    <item>
      <title>Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485440#M181370</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 have inventory report where in i have quantity ,rate and Value..&lt;/P&gt;&lt;P&gt;The Dimensions are Product Name&amp;nbsp; and Vendor Name....&lt;/P&gt;&lt;P&gt;Here when showing Sub total i want to hide the sub total for Rate and only show sub total for Quantity and Value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do that what would be code n where do i need to write..&lt;/P&gt;&lt;P&gt;I am attaching the sample report format..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 05:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485440#M181370</guid>
      <dc:creator>rohitians</dc:creator>
      <dc:date>2013-06-19T05:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485441#M181371</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;You can use like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(RowNo()=0 or IsNull(RowNo()),'',Sum(Rate))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 05:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485441#M181371</guid>
      <dc:creator />
      <dc:date>2013-06-19T05:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485442#M181372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when showing Sub total&lt;/P&gt;&lt;P&gt;you want to hide the sub total for Rate and only show sub total for Quantity and Value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;take a straight table--&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;dimension1-- Product Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;dimension2-- Vendor Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression1-- sum(PurchaseQty)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression2--&lt;SPAN style="color: #000080;"&gt;PurchaseRate&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression3-- sum&lt;/STRONG&gt;(&lt;STRONG&gt;POValue&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see sample attached file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:03:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485442#M181372</guid>
      <dc:creator />
      <dc:date>2013-06-19T06:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485443#M181373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Karthik,&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;But where do I write this code..&lt;/P&gt;&lt;P&gt;Explain&amp;nbsp; and&amp;nbsp; want to show total quantity and Value and I want to hide the rate&amp;nbsp; coulmn's total whose code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (SUM({$&amp;lt;DocumentType_Code={1}/*,OS_Purch_Qty={"&amp;gt;0"}*/&amp;gt;}PurchaseLine_Qty)&amp;gt;0,AVG(Purchaseline_UnitCost),0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:05:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485443#M181373</guid>
      <dc:creator>rohitians</dc:creator>
      <dc:date>2013-06-19T06:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485444#M181374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write "Rate" column expression like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(RowNo()=0 or IsNull(RowNo()),'',if (SUM({$&amp;lt;DocumentType_Code={1}/*,OS_Purch_Qty={"&amp;gt;0"}*/&amp;gt;}PurchaseLine_Qty)&amp;gt;0,AVG(Purchaseline_UnitCost),0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logic behind above expression is, &lt;STRONG&gt;RowNo() &lt;/STRONG&gt;function will reply 0 if that row is &lt;STRONG&gt;subtotal &lt;/STRONG&gt;and &lt;STRONG&gt;RowNo() &lt;/STRONG&gt;function will reply empty value if row is &lt;STRONG&gt;GrandTotal&lt;/STRONG&gt;. So for Rate column we are forcely giving "&lt;STRONG&gt;Null" value &lt;/STRONG&gt;in Subtotal and Grand Total.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:12:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485444#M181374</guid>
      <dc:creator />
      <dc:date>2013-06-19T06:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485445#M181375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Vishwaranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hw u did tht, viewed ur application bt didn understand????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:30:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485445#M181375</guid>
      <dc:creator />
      <dc:date>2013-06-19T06:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485446#M181376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For purchase rate write this expression&lt;/P&gt;&lt;P&gt;If(Dimensionality()=2,sum(PurchaseRate))&lt;/P&gt;&lt;P&gt;hope it helps you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 07:20:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485446#M181376</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-06-19T07:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding Partial Sum</title>
      <link>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485447#M181377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Everyone for Helping,&lt;/P&gt;&lt;P&gt;Karthik Mohit Vishwaranjan..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 11:04:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hiding-Partial-Sum/m-p/485447#M181377</guid>
      <dc:creator>rohitians</dc:creator>
      <dc:date>2013-06-19T11:04:36Z</dc:date>
    </item>
  </channel>
</rss>

