<?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: Create Pivot Table in VB macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725601#M260227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. i cnanot open. is there a pdf version ? thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jun 2014 09:27:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-27T09:27:48Z</dc:date>
    <item>
      <title>Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725599#M260225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;- Is it possible to create a Pivot Table from a VB macro ? I would like to have a macro (script created with Edit Module) to create a new QLikView pivot table in an existing document: select fields from the QLikView document, sort values, add fields and fill values for these new fields according to some rules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Could you hint at some example script to create QLikView object, in particular create a pivot Table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 15:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725599#M260225</guid>
      <dc:creator />
      <dc:date>2014-06-22T15:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725600#M260226</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;Use the API Guide. There are simple examples of creating objects.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-2640"&gt;QlikView Core COM API Guide - Version 11&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2014 17:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725600#M260226</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2014-06-22T17:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725601#M260227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. i cnanot open. is there a pdf version ? thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 09:27:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725601#M260227</guid>
      <dc:creator />
      <dc:date>2014-06-27T09:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725602#M260228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;You have your own local copy of QV documentation somewhere:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;C:\ProgramData\QlikTech\QlikView Documentation\Reference Manual&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;rem Create HLO system table on new sheet&lt;/P&gt;
&lt;P&gt;set Sheet=ActiveDocument.CreateSheet&lt;/P&gt;
&lt;P&gt;set Hlo=Sheet.CreatePivotTable&lt;/P&gt;
&lt;P&gt;Hlo.AddDimension "$Field"&lt;/P&gt;
&lt;P&gt;Hlo.AddDimension "$Table"&lt;/P&gt;
&lt;P&gt;Hlo.AddExpression "Only([$Field])"&lt;/P&gt;
&lt;P&gt;set Prop = Hlo.GetProperties&lt;/P&gt;
&lt;P&gt;Prop.TableProperties.PivotAlwaysFullyExpanded=true&lt;/P&gt;
&lt;P&gt;Prop.Dimensions(0).SortCriteria.SortByAscii=0&lt;/P&gt;
&lt;P&gt;Prop.Dimensions(0).SortCriteria.SortByLoadOrder=1&lt;/P&gt;
&lt;P&gt;Prop.Dimensions(1).SortCriteria.SortByAscii=0&lt;/P&gt;
&lt;P&gt;Prop.Dimensions(1).SortCriteria.SortByLoadOrder=1&lt;/P&gt;
&lt;P&gt;Prop.TableProperties.NumberOfLeftDimensions=1 &lt;/P&gt;
&lt;P&gt;Hlo.SetProperties Prop&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 09:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725602#M260228</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2014-06-27T09:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725603#M260229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there seems to be not much specific about creation of new sheet object in the help file. Could someone hint at a more precise documentation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 11:56:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725603#M260229</guid>
      <dc:creator />
      <dc:date>2014-06-27T11:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725604#M260230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have structured API documentation with examples in APIguide.qvw&lt;/P&gt;&lt;P&gt;There is nothing more precise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2014 12:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725604#M260230</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2014-06-27T12:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725605#M260231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there nothing more in the .qvw than the automation chapter in the Reference saved on disk in ProgramData?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jun 2014 20:59:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725605#M260231</guid>
      <dc:creator />
      <dc:date>2014-06-28T20:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725606#M260232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Object model definition and&amp;nbsp; VB code examples. Have you found the APIGuide.qvw ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 12:35:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725606#M260232</guid>
      <dc:creator>whiteline</dc:creator>
      <dc:date>2014-06-29T12:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725607#M260233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot access this document with PE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 12:43:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725607#M260233</guid>
      <dc:creator />
      <dc:date>2014-06-29T12:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725608#M260234</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;If you have Qlikview Installed,&lt;/P&gt;&lt;P&gt;you can find the API guide in below path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:\ProgramData\QlikTech\QlikView Documentation\Automation\APIguide.qvw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 12:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725608#M260234</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-29T12:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725609#M260235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not with the personal edition... at least there is nothing at this path...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 12:47:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725609#M260235</guid>
      <dc:creator />
      <dc:date>2014-06-29T12:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725610#M260236</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;In that case, look at the attached PDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 12:53:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725610#M260236</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-29T12:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725611#M260237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot. Is there more in the API guide.qvw ? because the .pdf is quite light on the API description...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 13:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725611#M260237</guid>
      <dc:creator />
      <dc:date>2014-06-29T13:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Create Pivot Table in VB macro</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725612#M260238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is lot more in API.qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder have you come across this post&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-2683"&gt;http://community.qlik.com/docs/DOC-2683&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2014 13:55:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Pivot-Table-in-VB-macro/m-p/725612#M260238</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-06-29T13:55:27Z</dc:date>
    </item>
  </channel>
</rss>

