<?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: How to hide some data in Pivot table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490731#M183345</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes... it works very well, could you tell me, what's the meaning of that total keyword in this expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Sep 2013 08:53:01 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-26T08:53:01Z</dc:date>
    <item>
      <title>How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490725#M183339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name, Revenue&lt;/P&gt;&lt;P&gt;A,100&lt;/P&gt;&lt;P&gt;A(1),100&lt;/P&gt;&lt;P&gt;B,200&lt;/P&gt;&lt;P&gt;B(1),200&lt;/P&gt;&lt;P&gt;C,300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see the some Name has relationship, like A and A(1) and they shared the same revenue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to is if the name has relationship, then show the Revenue in the second one, if not show it directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the above sample, the result is in Pivot table and Use Name as dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name, Revenue&lt;/P&gt;&lt;P&gt;A, -&lt;/P&gt;&lt;P&gt;A(1), 100&lt;/P&gt;&lt;P&gt;B,-&lt;/P&gt;&lt;P&gt;B(1),-&lt;/P&gt;&lt;P&gt;C,300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve it?&lt;/P&gt;&lt;P&gt;&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, 06 Sep 2013 06:02:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490725#M183339</guid>
      <dc:creator />
      <dc:date>2013-09-06T06:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490726#M183340</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 could try with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Only(Name)&amp;lt;&amp;gt;SubField(Below(Only(Name)), '(', 1), sum(Revenue))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 06:34:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490726#M183340</guid>
      <dc:creator />
      <dc:date>2013-09-06T06:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490727#M183341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Isaac,&lt;/P&gt;&lt;P&gt;if you are not using duplicate rows any where else you can just exclude them when you reload data.&lt;/P&gt;&lt;P&gt;by using order by and left function like or you can use distinct function with left function &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load distinct left( Name,index(Name,'(')) as Name ,&lt;/P&gt;&lt;P&gt;Revenue&lt;/P&gt;&lt;P&gt;From file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if name has&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 07:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490727#M183341</guid>
      <dc:creator>adnan_rafiq</dc:creator>
      <dc:date>2013-09-06T07:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490728#M183342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Iosu, thanks for your expression, it works well. However, if I add one more dimension into the pivot table,&lt;/P&gt;&lt;P&gt;the Below function will find the wrong Name, how to solve it? And Because I change the Pivot table into Straight table. And I attached the QVW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 03:14:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490728#M183342</guid>
      <dc:creator />
      <dc:date>2013-09-26T03:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490729#M183343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;STRONG&gt; total&lt;/STRONG&gt; keyword like attached sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 05:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490729#M183343</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-09-26T05:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490730#M183344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Isaac,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just add the TOTAL clause to the 'below' expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Only(Name)&amp;lt;&amp;gt;SubField(Below(TOTAL Only(Name)), '(', 1), sum(Revenue))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works this way&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 06:28:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490730#M183344</guid>
      <dc:creator />
      <dc:date>2013-09-26T06:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490731#M183345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes... it works very well, could you tell me, what's the meaning of that total keyword in this expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 08:53:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490731#M183345</guid>
      <dc:creator />
      <dc:date>2013-09-26T08:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to hide some data in Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490732#M183346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TOTAL is used to disregard dimension. For better understanding, please go through the attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 12:44:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-some-data-in-Pivot-table/m-p/490732#M183346</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-09-26T12:44:04Z</dc:date>
    </item>
  </channel>
</rss>

