<?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: Export every sheets to PPT in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478579#M554681</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;I also haven't get any solution. But I received a link from one of the community here..Maybe this can help. I'm looking on it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="3774" data-objecttype="102" href="https://community.qlik.com/docs/DOC-3774" style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7; background-color: #f6f6f6;"&gt;http://community.qlik.com/docs/DOC-3774&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Nov 2013 06:36:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-11-27T06:36:26Z</dc:date>
    <item>
      <title>Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478574#M554676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To export sheet to PPT by using macro, I have the code as shown below, but it's working weird as it only export one of the sheet image to PPT while the other 2 sheet images in blank. &lt;/P&gt;&lt;P&gt;Kindly give a hint to correct my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Sub ppt&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Dim myArray(2)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;myArray(0) = "SH_Media_Performance"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000000;"&gt; 'my sheet ID_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;myArray(1) = "SH_Catalogues"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;'my sheet ID_2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;myArray(2) = "SH_Executive_Summary"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;'my sheet ID_3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set objPPT = CreateObject("PowerPoint.Application")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;objPPT.Visible = True&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set objPresentation = objPPT.Presentations.Add&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;For count = 0 to ubound(MyArray)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;ActiveDocument.Sheets(myArray(count)).Activate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set t=ActiveDocument.ActiveSheet&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;t.CopyBitmapToClipboard&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;PPSlide.Shapes.Paste&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;if count = 3 then exit sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Next&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set PPSlide = Nothing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set PPPres = Nothing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;Set PPApp = Nothing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;SPAN style="color: #575757;"&gt;The weird PPT came out after running the macro, the correct result should show 3 sheet images in 3 slides.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/46860_Capture.PNG.png" style="width: 620px; height: 345px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Chanel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 02:15:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478574#M554676</guid>
      <dc:creator />
      <dc:date>2013-09-04T02:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478575#M554677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sending you macros Steps for Creation of PDF you have to find little code and replace for ppt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope This will help you to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &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, 04 Sep 2013 04:04:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478575#M554677</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2013-09-04T04:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478576#M554678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vikas for your solution, I tried to click on button "Make PDF", it prompt out the window to key in *contact number, which mean it will create pdf file and send it to phone?&lt;/P&gt;&lt;P&gt;After key in phone number, it mentioned "printing" but nothing appear.&lt;/P&gt;&lt;P&gt;May I know how to make it work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 08:44:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478576#M554678</guid>
      <dc:creator />
      <dc:date>2013-09-04T08:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478577#M554679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chanel Choo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you managed to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 05:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478577#M554679</guid>
      <dc:creator />
      <dc:date>2013-11-22T05:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478578#M554680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, i haven't get a solution for this yet. Hope that you can update here if you have any good solution!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Chanel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 07:46:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478578#M554680</guid>
      <dc:creator />
      <dc:date>2013-11-22T07:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Export every sheets to PPT</title>
      <link>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478579#M554681</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;I also haven't get any solution. But I received a link from one of the community here..Maybe this can help. I'm looking on it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="3774" data-objecttype="102" href="https://community.qlik.com/docs/DOC-3774" style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7; background-color: #f6f6f6;"&gt;http://community.qlik.com/docs/DOC-3774&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Nov 2013 06:36:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-every-sheets-to-PPT/m-p/478579#M554681</guid>
      <dc:creator />
      <dc:date>2013-11-27T06:36:26Z</dc:date>
    </item>
  </channel>
</rss>

