<?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 Export into ppt in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677435#M245766</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a requirement to export the qlikview chart in to PPT through macro and its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am facing a issue, some of the charts are not aligned properly means if i have 1 million records in the chart then while exporting into PPT the chart has to be split and paste into PPT slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward your help and solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2014 22:43:38 GMT</pubDate>
    <dc:creator>sathishkumar_go</dc:creator>
    <dc:date>2014-07-29T22:43:38Z</dc:date>
    <item>
      <title>Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677435#M245766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a requirement to export the qlikview chart in to PPT through macro and its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am facing a issue, some of the charts are not aligned properly means if i have 1 million records in the chart then while exporting into PPT the chart has to be split and paste into PPT slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward your help and solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 22:43:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677435#M245766</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-07-29T22:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677436#M245767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want really export 1 million records into ppt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the export-object is too big to size it properly on one slide - I would wrapp the export-macro in a loop-routine which selects always only so many records which fit on one slide - perhaps you need an additionally field for this through which the routine could loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:24:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677436#M245767</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2014-07-30T10:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677437#M245768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could customized like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ExportPPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.ActiveSheet.FitZoomToWindow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objPPT = CreateObject("PowerPoint.Application")&lt;/P&gt;&lt;P&gt;objPPT.Visible = True&lt;/P&gt;&lt;P&gt;Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For i = 0 To ActiveDocument.NoOfSheets - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set MySheet = ActiveDocument.GetSheet(i)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPSlide.Shapes(1).Text ' removes the title&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes(1).Delete ' removes the text box&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&amp;nbsp; ActiveDocument.ActiveSheet.CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("CH03").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt; .left = 0&lt;/P&gt;&lt;P&gt; .top = 60&lt;/P&gt;&lt;P&gt; .width=200&lt;/P&gt;&lt;P&gt; .Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("CH04").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt;.left = 380&lt;/P&gt;&lt;P&gt;.top = 60&lt;/P&gt;&lt;P&gt;.width=250&lt;/P&gt;&lt;P&gt;.Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ActiveDocument.GetSheetObject("CH05").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt;.left = 0&lt;/P&gt;&lt;P&gt;.top = 300&lt;/P&gt;&lt;P&gt;.width=200&lt;/P&gt;&lt;P&gt;.Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH06").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt;.left = 380&lt;/P&gt;&lt;P&gt;.top = 300&lt;/P&gt;&lt;P&gt;.width=250&lt;/P&gt;&lt;P&gt;.Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(2,1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPSlide.Shapes(1).Delete ' removes the title&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes(1).Delete ' removes the text box&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("CH07").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt;.left = 0&lt;/P&gt;&lt;P&gt;.top = 40&lt;/P&gt;&lt;P&gt;.width=200&lt;/P&gt;&lt;P&gt;.Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH08").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes(PPSlide.Shapes.Count)&lt;/P&gt;&lt;P&gt;.left = 380&lt;/P&gt;&lt;P&gt;.top = 40&lt;/P&gt;&lt;P&gt;.width=200&lt;/P&gt;&lt;P&gt;.Height=200&lt;/P&gt;&lt;P&gt;end with&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;Set PPPres = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:44:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677437#M245768</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-07-30T10:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677438#M245769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not feasible to export&amp;nbsp; millions of&amp;nbsp; into PPT&amp;nbsp; try to export into CSV and then do whatever you want to do with data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677438#M245769</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2014-07-30T10:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677439#M245770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While exporting into PPT, I am applying relevent selections. After that also object size is too big.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically i want to split the object based on the object size and it should be exported into ppt slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 17:12:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677439#M245770</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-07-30T17:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677440#M245771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chauhan,&lt;/P&gt;&lt;P&gt;Thanks for providing the macro. But in the macro will export different objects into different slides.&lt;/P&gt;&lt;P&gt;But in some case, I will not sure how much data will be in the object. Because the data is more then object has to split and export into other slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i am strucking to split the object and export in to the ppt slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 17:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677440#M245771</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-07-30T17:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677441#M245772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant not really a normal field-selections - more a field which contained a rowno-cluster from your object, maybe it will be not easy to create that ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another possibility could be to read within the macro the first 30 to 50 rows from your object and use these values to make selections - the export and afterwards select the next row-area and then your object has always the same size by the export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe it is easier to export your data into a csv-file and then build your charts in ppt themselves ... or you used pdf-prints ... I couldn't imagine that people want to look to a ppt with hundreds of slides with the same object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 19:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677441#M245772</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2014-07-30T19:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677442#M245773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually this project will create a set of ppt files with standardised format and distribute across all the management peoples automatically. They don't want any manual work here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to go with macro to 30 (Fitted) rows will export into 1st slide and other rows will export in next slides accordingly.&lt;/P&gt;&lt;P&gt;But i am not able to splitting the&amp;nbsp; object by 30 - 40 rows slide by slide in macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 21:40:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677442#M245773</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-07-30T21:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677443#M245774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sathish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will definitely need some logic to count and identify your rows to create row-clusters through which you could loop. Both above mentioned methods - creating row-cluster as a native field within the script or reading your object(s) --&amp;gt; maybe you have more as ones, hidden help-objects only for these certain reason - will work. But it won't be trivial ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore it could be easier to export your objects into xls(x) or csv and counting and creating your row-cluster is very simple. Afterwards you could use these row-cluster informations for your final export into ppt - it is a two-step logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 06:20:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677443#M245774</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2014-07-31T06:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677444#M245775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Marcus,&lt;/P&gt;&lt;P&gt;Thanks for providing the solution.&lt;/P&gt;&lt;P&gt;Do you have any macro for that? for spliting the qlikview docment and export into different slids?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 17:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677444#M245775</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-08-01T17:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Export into ppt</title>
      <link>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677445#M245776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sathish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't a macro for that - you could look into APIGuide.qvw in your install-folder. There by search from "getrowcount" and similar in field member you will find examples which loop through objects on cell-level. Then you need a counter for your row-cluster and collect the field-values inside these cluster and use this for selections on these fields, make the export, remove the selection, collect the next row-cluster and so on - but you will need some effort to bring these approach to work + by your amount of data and exports it will be rather (too ?) slow ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the other both solutions - creating the row-cluster within in the sript or using a prepared master-ppt which have a changing data-source (through full-export into xls(x) or csv) - will be easier and faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generall by your amount of reports ( and I assume you will have some more as that) you should consider if ppt is a suitable format and if you could use tools for that, publisher, nprinting or othe third-party-tools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Aug 2014 08:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-into-ppt/m-p/677445#M245776</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2014-08-02T08:37:23Z</dc:date>
    </item>
  </channel>
</rss>

