<?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 How to Hide first Calculated dimension with pivot table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5985#M511643</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to Hide first Dimension in Pivot table &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jan 2018 07:18:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-01-24T07:18:36Z</dc:date>
    <item>
      <title>How to Hide first Calculated dimension with pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5985#M511643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to Hide first Dimension in Pivot table &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2018 07:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5985#M511643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-24T07:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide first Calculated dimension with pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5986#M511644</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;There is no default way to hide the dimension in Pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can tell us what you want to achieve doing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2018 07:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5986#M511644</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2018-01-24T07:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide first Calculated dimension with pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5987#M511645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you mind sharing a screenshot or a mockup of what you´re trying to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2018 09:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5987#M511645</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2018-01-24T09:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide first Calculated dimension with pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5988#M511646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to write in Macro that is working fine .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for UI and script level....below my macro code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;sub Squeeze&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; call HideColumn("CH01", 1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;end sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;private sub HideColumn(ch, n)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; set ch = ActiveDocument.GetSheetObject(ch)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; ch.SetPixWidth (n-1), 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;end sub&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2018 09:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Hide-first-Calculated-dimension-with-pivot-table/m-p/5988#M511646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-24T09:49:56Z</dc:date>
    </item>
  </channel>
</rss>

