<?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 multiple objects to a single powerpoint slide in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366898#M704044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A 720 width will give you objects of the maximum width of the slide, and as it is grow the bitmap proportionally, you end up with a clean mage or table...&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2012 12:27:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-08-09T12:27:23Z</dc:date>
    <item>
      <title>Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366892#M704038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone provide sample code for a macro to export multiple objects into a single powerpoint slide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like there are no previous discussions regarding this topic.&lt;/P&gt;&lt;P&gt;All the discussions only tell about pasting a single object per slide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would really appreciate it, if someone sheds light on this topic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 21:14:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366892#M704038</guid>
      <dc:creator />
      <dc:date>2012-05-23T21:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366893#M704039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I adapted DV's code from this post: &lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/196413#196413"&gt;http://community.qlik.com/message/196413#196413&lt;/A&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;&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,11)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.ActiveSheet.CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&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; 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;&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; ActiveDocument.GetSheetObject("CH04").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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&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;P&gt;&lt;/P&gt;&lt;P&gt;This will export charts CH03 and CH04&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;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 02:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366893#M704039</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-05-24T02:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366894#M704040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for the prompt reply Erich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script you posted allows me to copy objects only from my Active sheet on to a slide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I want to copy objects from other sheets as well.&lt;/P&gt;&lt;P&gt;To do this I have tried to manually set the active sheets but in vain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sub ExportPPT&lt;BR /&gt;&lt;BR /&gt;Set objPPT = CreateObject("PowerPoint.Application")&lt;BR /&gt;objPPT.Visible = True&lt;BR /&gt;Set objPresentation = objPPT.Presentations.Add(True)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Set Sheet1= ActiveDocument.Sheets("SH04") &lt;BR /&gt;Set PPSlide = objPresentation.Slides.Add(objPresentation.Slides.Count + 1,11)&lt;BR /&gt;&lt;BR /&gt;PPSlide.Shapes(1).TextFrame.TextRange.Text = "Productivity Tracking"&lt;BR /&gt;Sheet1.GetSheetObject("CH34").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt;Sheet1.GetSheetObject("CH05").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt;Sheet1.GetSheetObject("CH35").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt;&lt;BR /&gt;Set Sheet2= ActiveDocument.Sheets("SH10")&lt;BR /&gt;Set PPSlide = objPresentation.Slides.Add(objPresentation.Slides.Count + 1,11)&lt;BR /&gt;PPSlide.Shapes(1).TextFrame.TextRange.Text = "Hiring" &lt;BR /&gt;Sheet2.GetSheetObject("CH37").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt;Sheet2.GetSheetObject("CH38").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt;&lt;BR /&gt;Set PPSlide = Nothing&lt;BR /&gt;Set PPPres = Nothing&lt;BR /&gt;&lt;BR /&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the error I receive. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Object doesn't support this property or method: 'Sheet1.GetSheetObject' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I actually select what objects I want from different sheets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would also love to know, how I can control the positions of the objects on the slide?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;﻿&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;﻿Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;﻿&lt;/SPAN&gt;BharathBK&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;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 18:44:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366894#M704040</guid>
      <dc:creator />
      <dc:date>2012-05-24T18:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366895#M704041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are the objects in those sheets minimized? When I tried before, it didn't work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try to activate the sheet before copying the object: &lt;/P&gt;&lt;P&gt;ActiveDocument.ActivateSheetByID "SH01"&lt;/P&gt;&lt;P&gt;It may also be necessary to restore the object (if it is minimized) with something like this: &lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH03").Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did a quick search, trying to control how to position the object when it is pasted, but I couldn't find a way. It would depend on the syntax provided by powerpoint itself... &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;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2012 19:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366895#M704041</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2012-05-24T19:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366896#M704042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any macro for &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export multiple Sheets as a image to a single powerpoint slides.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I have an QV Application and I want to send all the sheets as a image to multiple Slide in a Single PPT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AKumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 10:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366896#M704042</guid>
      <dc:creator>sona_sa</dc:creator>
      <dc:date>2012-07-20T10:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366897#M704043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Erich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm Not sure if you have fixed the issue by now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the follwing the positon the objects when you place them on PPT. Set values for ( .Left, .top, .width, .height)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("P2T2").CopyBitmapToClipboard&lt;BR /&gt;with PPSlide.Shapes.Paste&lt;BR /&gt;.Left = 150&lt;BR /&gt;.top = 350&lt;BR /&gt;.width=50&lt;BR /&gt;.height=90&lt;BR /&gt;end with &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Hope it helps you!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your help in fixing my issue with PPT. I have 2 objects, one on 1st sheet and 2nd on the next sheet. I was able to export the object on 1st sheet to the ppt and could not export the 2nd one, Beacuse it was not the&amp;nbsp; Active sheet. I tried You method above but I could not get that. Could you please help me fixing this issue?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;A&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 11:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366897#M704043</guid>
      <dc:creator>sureshbaabu</dc:creator>
      <dc:date>2012-08-09T11:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366898#M704044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A 720 width will give you objects of the maximum width of the slide, and as it is grow the bitmap proportionally, you end up with a clean mage or table...&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 12:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366898#M704044</guid>
      <dc:creator />
      <dc:date>2012-08-09T12:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366899#M704045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Erich. Excellent example QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Apr 2013 08:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366899#M704045</guid>
      <dc:creator />
      <dc:date>2013-04-25T08:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366900#M704046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Erich. Excellent example QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Apr 2013 08:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366900#M704046</guid>
      <dc:creator />
      <dc:date>2013-04-25T08:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366901#M704047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This macro exporting my chart objects as images into ppt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 06:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366901#M704047</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2014-03-24T06:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366902#M704048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the sample. One little issue is that all objects are coming on top of each other.. Can I assign positions? Also, Is there anyway I can include all these objects into a single image instead of multiple images?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Alec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 15:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366902#M704048</guid>
      <dc:creator>alec1982</dc:creator>
      <dc:date>2014-08-18T15:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366903#M704049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello alec,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To choose the position of the objects, you can use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Shape = PPSlide.Shapes(PPSlide.Shapes.count)&amp;nbsp; ' Select the last picture which was pasted into the slide&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; With Shape&lt;/P&gt;&lt;P&gt;&amp;nbsp; .LockAspectRatio = msoTRUE 'Allow size modification&lt;/P&gt;&lt;P&gt;&amp;nbsp; .PictureFormat.CropTop = 10 'crop&lt;/P&gt;&lt;P&gt;&amp;nbsp; .PictureFormat.CropBottom = 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; '.PictureFormat.CropRight = 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; .left=01&lt;/P&gt;&lt;P&gt;&amp;nbsp; .top= 77&lt;/P&gt;&lt;P&gt;&amp;nbsp; .height= 180&lt;/P&gt;&lt;P&gt;&amp;nbsp; .width=370&lt;/P&gt;&lt;P&gt;&amp;nbsp; END With&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure you can export the objects in only one picture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 12:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366903#M704049</guid>
      <dc:creator />
      <dc:date>2014-08-20T12:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366904#M704050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;hey guys! how are you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I want to create a powerpoint from some differents qlikview objects. I could creat the macro wich create the ppt and paste the objects but i have the following questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How can i create the ppt with a specific name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How can i put one object per slide ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How can i put two specific objects in a specific slide?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;here i paste the macro. THANKS A LOT!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sub ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'An array with the objects you want to export to powerpoint&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dim myArray(4)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;myArray(0) = "CH09"&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;myArray(1) = "TX22"&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;myArray(2) = "TX23"&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;myArray(3) = "TX31"&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Create ppt object&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set objPPT = CreateObject("PowerPoint.Application")&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objPPT.Visible = True&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Apply a template if you want one&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'objPresentation.ApplyTemplate _&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'&amp;nbsp;&amp;nbsp; ("C:\mytemplate.potx")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'For each object in the array create a new slide and paste it.&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;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;For each item in myArray&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&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;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.ActiveSheet.CopyBitmapToClipboard&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&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; ActiveDocument.GetSheetObject("CH09").CopyBitmapToClipboard&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&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; ActiveDocument.GetSheetObject("TX22").CopyBitmapToClipboard&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with PPSlide.Shapes.Paste&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .Left = 90&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.top = 50&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.width=50&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.height=90&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end with&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetObject("TX31").CopyBitmapToClipboard&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; with PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; .Left = 150&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.top = 350&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.width=20&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.height=20&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&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; ActiveDocument.GetSheetObject("TX23").CopyBitmapToClipboard &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; with PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.Left = 150&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.top = 350&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.width=50&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;.height=90&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end with&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Clean up&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set PPSlide = Nothing&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set PPPres = Nothing&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set PPApp = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;End Sub&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 17:55:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366904#M704050</guid>
      <dc:creator>jumiprado</dc:creator>
      <dc:date>2014-10-10T17:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366905#M704051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's been a while I haven't used macros but I will try to help you with what I remember.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) To give a name to your ppt, you can save it at the end:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objPresentation.SaveAs "PathWhereYouwantToSaveYourPPT\YourPPTName.pptx"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) To put one object per slide, I'd say you first have to select the slide and then paste the object you want to paste in. (and do it as many times as you have objects) &lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set PPTSlide = objPresentation.Slide(1) selects (or create if none exists)&amp;nbsp; the first slide of your presentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Once you have selected the slide, you can paste your 2 objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a good day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laura&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2014 08:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366905#M704051</guid>
      <dc:creator />
      <dc:date>2014-10-13T08:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366906#M704052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Laura, thanks. I have problems with 2) and 3) because i create an array with the differents objects i want to export. i have this code:&lt;/P&gt;&lt;P&gt;Dim myArray(3)&lt;/P&gt;&lt;P&gt;myArray(0) = "CH09"&lt;/P&gt;&lt;P&gt;myArray(1) = "TX23"&lt;/P&gt;&lt;P&gt;myArray(2) = "TX31"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---------------------------------------------------&lt;/P&gt;&lt;P&gt;For each item in myArray&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.ActiveSheet.CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetObject("CH09").CopyBitmapToClipboard &lt;/P&gt;&lt;P&gt;with PPSlide.Shapes.Paste&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;***************** &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I would like to select the objects and then paste that on the ppt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:27:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366906#M704052</guid>
      <dc:creator>jumiprado</dc:creator>
      <dc:date>2014-10-14T15:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366907#M704053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, are your QV objects on the same sheet ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I know, you cannot select all your objects first and then paste them because the command : PPSlide.Shapes.Paste only takes into account the last shape.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about using a loop ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like :&lt;/P&gt;&lt;P&gt; for i=1 to 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select object(i)&lt;/P&gt;&lt;P&gt;Select Slide(i)&lt;/P&gt;&lt;P&gt;Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you only have 3 objects to paste or is it just for the example? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366907#M704053</guid>
      <dc:creator />
      <dc:date>2014-10-14T15:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366908#M704054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for now, yes. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366908#M704054</guid>
      <dc:creator>jumiprado</dc:creator>
      <dc:date>2014-10-14T15:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366909#M704055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is a loop possible for you ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to paste 1 object per sheet ? Is there a way to calculate the numero of the sheet you want to apste each object on ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:49:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366909#M704055</guid>
      <dc:creator />
      <dc:date>2014-10-14T15:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366910#M704056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Me parece que podemos hablar en español jaja, necesito pegar un objeto en un slide especifico y en algunos casos pegar 2 objetos en otros slides en particular, la idea es crear un powerpoint con los objectos actualizados de manera automática. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pensaba utilizar una sentencia IF en donde dependiendo el ID de Objeto, lo pegue en una Slide 5, por ejemplo. El problema es que no se como armar el codigo para que lo realice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos y gracias!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/153046"&gt;LauraS056&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366910#M704056</guid>
      <dc:creator>jumiprado</dc:creator>
      <dc:date>2014-10-14T15:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export multiple objects to a single powerpoint slide</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366911#M704057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;jaja, no soy española o sudamericana. Soy francesa. Entiendo un poco el español pero&amp;nbsp; el ingles es mas facil para mi &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no really relationship between the object and the numero of the slide, why don't you want to simply&amp;nbsp; write one block of code per object ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sth like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Object 1&lt;/P&gt;&lt;P&gt;Set PPSlide=objPresentation.Slides(1)&amp;nbsp; 'select the slide&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject(myArray(0)).CopyBitmapToClipboard&amp;nbsp; 'Copy the object you want&lt;/P&gt;&lt;P&gt;PPSlide.Shapes.Paste 'Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can configure the size and position..and&amp;nbsp; do it for each object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure a loop will be more efficient if it has to go through all the powerpoint to check some conditions (IF) to paste the object or not and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 16:21:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-objects-to-a-single-powerpoint-slide/m-p/366911#M704057</guid>
      <dc:creator />
      <dc:date>2014-10-14T16:21:28Z</dc:date>
    </item>
  </channel>
</rss>

