<?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 collapse rows in excel pivot table - Nprinting in Qlik NPrinting</title>
    <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124165#M10539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I have created an &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;excel&lt;/SPAN&gt; pivot chart in nprinting reports. After refresh the chart is always expanded. Is a way to get it collapsed after refresh?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2016 13:25:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-03T13:25:20Z</dc:date>
    <item>
      <title>collapse rows in excel pivot table - Nprinting</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124165#M10539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I have created an &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;excel&lt;/SPAN&gt; pivot chart in nprinting reports. After refresh the chart is always expanded. Is a way to get it collapsed after refresh?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 13:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124165#M10539</guid>
      <dc:creator />
      <dc:date>2016-06-03T13:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: collapse rows in excel pivot table - Nprinting</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124166#M10540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christiana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will need to use XLSM format and write VBA code in the &lt;EM&gt;Workbook Open&lt;/EM&gt; event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Taken from the Training Materials: &lt;A href="https://community.qlik.com/docs/DOC-9196"&gt;NPrinting 16 Training &amp;amp;amp; Installation/Upgrade Information&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a Pivot Table in your template like this:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="126873" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/126873_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;You can use this code to collapse the field &lt;STRONG&gt;&amp;lt;Country&amp;gt;&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-size: 8pt; font-family: courier new,courier;"&gt;Private Sub Workbook_Open()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheets("Excel Pivot Table").Select&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveSheet.PivotTables("PivotTable1").PivotSelect "Country[All]", xlLabelOnly _&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + xlFirstRow, True&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveSheet.PivotTables("PivotTable1").PivotFields("Country").ShowDetail = _&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; False&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Range("B2").Select&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; font-size: 8pt; font-family: courier new,courier;"&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="126875" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/126875_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;Remember to save and preview as XLSM.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;&lt;IMG __jive_id="126874" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/126874_pastedImage_4.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;HTH - Daniel.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 23:59:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124166#M10540</guid>
      <dc:creator>Daniel_Jenkins</dc:creator>
      <dc:date>2016-06-04T23:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: collapse rows in excel pivot table - Nprinting</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124167#M10541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this aplicable for NPrinting 17.2 as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2016 15:44:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124167#M10541</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-14T15:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: collapse rows in excel pivot table - Nprinting</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124168#M10542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ladislav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In NPrinting 17.2 you cannot set the output format to XLSM. Therefore not applicable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Daniel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2016 21:38:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1124168#M10542</guid>
      <dc:creator>Daniel_Jenkins</dc:creator>
      <dc:date>2016-11-14T21:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: collapse rows in excel pivot table - Nprinting</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1512770#M21480</link>
      <description>&lt;P&gt;For reference the xlsm templates are back in place for sept 2018 onwards&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 11:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/collapse-rows-in-excel-pivot-table-Nprinting/m-p/1512770#M21480</guid>
      <dc:creator>stig1984</dc:creator>
      <dc:date>2018-11-27T11:04:07Z</dc:date>
    </item>
  </channel>
</rss>

