<?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 hide columns in a pivot table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236324#M87522</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 need to convert a straight table to a pivot table. I have made use of the feature which allows me to hide a column based on an expression.&lt;/P&gt;&lt;P&gt;How can I accomplish this using a pivot table (hide a column based on an expression). I am using QlikView Version 9.0.&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2010 00:20:11 GMT</pubDate>
    <dc:creator>mstoler</dc:creator>
    <dc:date>2010-02-11T00:20:11Z</dc:date>
    <item>
      <title>hide columns in a pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236324#M87522</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 need to convert a straight table to a pivot table. I have made use of the feature which allows me to hide a column based on an expression.&lt;/P&gt;&lt;P&gt;How can I accomplish this using a pivot table (hide a column based on an expression). I am using QlikView Version 9.0.&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 00:20:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236324#M87522</guid>
      <dc:creator>mstoler</dc:creator>
      <dc:date>2010-02-11T00:20:11Z</dc:date>
    </item>
    <item>
      <title>hide columns in a pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236325#M87523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think this is available yet in Pivot tables. Best I've been able to do is use a text format expression to make the text same color as backgound.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 02:11:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236325#M87523</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2010-02-11T02:11:08Z</dc:date>
    </item>
    <item>
      <title>hide columns in a pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236326#M87524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could add/remove expression with the help of Macros dynamically, if that helps, based on what you need:&lt;/P&gt;&lt;P&gt;set Graph = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;Graph.AddShowValueExpression "if(sum(Amount)&amp;gt;10, 1, 0)",0 '0=false&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 04:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236326#M87524</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2010-02-11T04:00:17Z</dc:date>
    </item>
    <item>
      <title>hide columns in a pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236327#M87525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option would be to have multiple pivor charts and enable / disable them based on the condions. I would rather take this approach over macros. Try what works out best for your situation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 04:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236327#M87525</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2010-02-11T04:04:31Z</dc:date>
    </item>
    <item>
      <title>hide columns in a pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236328#M87526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could make the column 0 width:&lt;/P&gt;&lt;P&gt;set chart = ActiveDocument.GetSheetObject("CH99") ' CHANGE THE OBJECT ID&lt;BR /&gt; set p = chart.GetProperties&lt;/P&gt;&lt;P&gt;set expr = p.Expressions.Item(0).Item(0).Data.ExpressionVisual ' group.expression numbered from 0&lt;BR /&gt; expr.ColWidth = 0&lt;BR /&gt; chart.SetProperties p&lt;/P&gt;&lt;P&gt;However, I would use multiple charts if possible - avoid using macros whenever possible.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 10:37:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-columns-in-a-pivot-table/m-p/236328#M87526</guid>
      <dc:creator />
      <dc:date>2010-02-11T10:37:34Z</dc:date>
    </item>
  </channel>
</rss>

