<?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 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408082#M151802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope - afraid not. We are using a button that fires a macro to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 31 Mar 2013 18:03:32 GMT</pubDate>
    <dc:creator>Jason_Michaelides</dc:creator>
    <dc:date>2013-03-31T18:03:32Z</dc:date>
    <item>
      <title>Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408081#M151801</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;Is there any way we can expand all the columns in the pivot table using trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally i would like to expand all the columns and export to excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now we have to expand each and every column through right click or have to select always fully expanded or use the macro. Other than these options is there any way i can expand all the column in one click.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 02:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408081#M151801</guid>
      <dc:creator>brindlogcool</dc:creator>
      <dc:date>2013-03-31T02:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408082#M151802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope - afraid not. We are using a button that fires a macro to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helpa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 18:03:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408082#M151802</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2013-03-31T18:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408083#M151803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Could you pls share the macro?&amp;nbsp; I am trying to do exactly that but I do not know enough to code the macro by myself.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 18:59:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408083#M151803</guid>
      <dc:creator />
      <dc:date>2013-04-26T18:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot table</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408084#M151804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code below sets the "always fully expand" property so you will most likely need a "collapse" button too to uncheck it. vChartToExpand is a variable with the ObjectID of the chart to expand/collapse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ExpandChart&lt;BR /&gt; 'This macro fully expands the selected pivot table.&lt;BR /&gt;&amp;nbsp; On Error Resume Next&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp; Set vChartToExpand = ActiveDocument.Variables("vChartToExpand")&lt;BR /&gt;&amp;nbsp; Set chart = ActiveDocument.GetSheetObject(vChartToExpand.GetContent.String)&lt;BR /&gt;&amp;nbsp; Set gp = chart.GetProperties&lt;BR /&gt;&amp;nbsp; gp.TableProperties.PivotAlwaysFullyExpanded = TRUE 'not gp.TableProperties.PivotAlwaysFullyExpanded&lt;BR /&gt;&amp;nbsp; chart.SetProperties gp&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sub CollapseChart&lt;BR /&gt; 'This macro allowse collapsing of the selected pivot table.&lt;BR /&gt;&amp;nbsp; On Error Resume Next&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp; Set vChartToExpand = ActiveDocument.Variables("vChartToExpand")&lt;BR /&gt;&amp;nbsp; Set chart = ActiveDocument.GetSheetObject(vChartToExpand.GetContent.String)&lt;BR /&gt;&amp;nbsp; Set gp = chart.GetProperties&lt;BR /&gt;&amp;nbsp; gp.TableProperties.PivotAlwaysFullyExpanded = FALSE 'not gp.TableProperties.PivotAlwaysFullyExpanded&lt;BR /&gt;&amp;nbsp; chart.SetProperties gp&lt;BR /&gt;End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Apr 2013 09:03:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-table/m-p/408084#M151804</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2013-04-29T09:03:32Z</dc:date>
    </item>
  </channel>
</rss>

