<?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: Macro to Copy &amp; Paste table into Powerpoint using paste special in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368424#M1178929</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub ppt&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set objPPT = CreateObject("PowerPoint.Application")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objPPT.Visible = True&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Set objPresentation = objPPT.Presentations.Add&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For j=1 To 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,12)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;next&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ActiveDocument.Sheets("SH01").Activate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Set obj = ActiveDocument.GetSheetObject("CH03")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objPresentation.Slides(1).Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;obj.CopyTableToClipboard true&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Set obj = ActiveDocument.GetSheetObject("CH04")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objPresentation.Slides(2).Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;obj.CopyTableToClipboard true&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found out you don't need the With PPSlide to do Paste Source Formatting since it will paste it in you active slide. So you want to choose the slide you want to paste it on with the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;objPresentation.Slides(1).Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;Hope this helps!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Feb 2016 20:05:22 GMT</pubDate>
    <dc:creator>jerem1234</dc:creator>
    <dc:date>2016-02-24T20:05:22Z</dc:date>
    <item>
      <title>Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368402#M1178904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I'm hoping someone has experience pasting tables into Powerpoint using paste special. I've had success using CopyToBitmapToClipboard using the following code:&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH418").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;PPSlide.Shapes.Paste.Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to paste in an editable table instead of an image and I thought something like this code would work:&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH418").CopyTableToClipboard True &lt;/P&gt;&lt;P&gt;PPSlide.Shapes.PasteSpecial(PasteHTML).Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I get the following error:&lt;/P&gt;&lt;P&gt;Shapes.PasteSpecial : Invalid request.&amp;nbsp; Clipboard is empty or contains data which may not be pasted here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I confirmed that the Clipboard was not empty by manually pasting from it into Powerpoint. I also tried PasteDefault instead of PasteHTML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The PasteSpecial works with CopyBitmapToClipboard. The example below worked so I think some form of PasteSpecial should work for straight tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH418").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;PPSlide.Shapes.PasteSpecial(PasteEnhancedMetafile).Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone has any insights, it would be greatly appreciated. I am using version 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;P&gt;Grant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2012 17:24:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368402#M1178904</guid>
      <dc:creator />
      <dc:date>2012-03-25T17:24:46Z</dc:date>
    </item>
    <item>
      <title>Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368403#M1178905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try This:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub CT&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH01").CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arun Goel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 09:35:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368403#M1178905</guid>
      <dc:creator />
      <dc:date>2012-03-26T09:35:29Z</dc:date>
    </item>
    <item>
      <title>Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368404#M1178906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Arun,&lt;/P&gt;&lt;P&gt; Thanx for the reply. I don't have a problem copying the Table. My problem is pasting it into the Powerpoint Slide. It may be that I need to add a Table first and then paste into each cell. I hope I don't have to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 22:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368404#M1178906</guid>
      <dc:creator />
      <dc:date>2012-03-26T22:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368405#M1178907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Grant,&lt;/P&gt;&lt;P&gt;I recently ran into this and stumbled upon pasting while keeping source formatting. However I think this will only work for PowerPoint 2010 or higher since the command was implemented in this version. I used this code for a macro to copy a table to PowerPoint:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;/P&gt;&lt;P&gt;&amp;nbsp; set &lt;STRONG&gt;objPPT&lt;/STRONG&gt; = CreateObject("PowerPoint.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp; objPPT.Visible = True&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.Sheets("SH01").Activate&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set &lt;STRONG&gt;PPSlide&lt;/STRONG&gt; = objPresentation.Slides.Add(1,obj.GetObjectType)&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; obj.CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;With PPSlide&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; End With&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saw this post while I was searching, and thought that this may be useful to you if you haven't found it yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 19:37:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368405#M1178907</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-29T19:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368406#M1178908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Grant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for the same. Did you got the answer?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If you know, Please share to me.&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, 03 Oct 2014 12:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368406#M1178908</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2014-10-03T12:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368407#M1178909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI &lt;SPAN class="font-color-meta" style="padding: 0 0 5px; font-size: 1.2em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #e6e6e6;"&gt;&lt;SPAN class="replyToName" style="font-weight: inherit; font-style: inherit; font-size: 15.6px; font-family: inherit;"&gt;Jeremiah Kurpat,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one prob here.&amp;nbsp; I have looped all the chart and copied to ppt.&lt;/P&gt;&lt;P&gt;If its chart paste as bitmap and if its straigt/pivot paste as table as the above code that u are using.&lt;/P&gt;&lt;P&gt;However , the prob is ,it copies all the tables to first slide and not the specific slide. &lt;/P&gt;&lt;P&gt;Please let me know if you had encountered the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2016 10:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368407#M1178909</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-22T10:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368408#M1178910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;All the charts are copied into same page in PPT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That means you have to pass add sheets command in the loop or before copy command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2016 10:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368408#M1178910</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2016-02-22T10:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368409#M1178911</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;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;With this instruction you can set the diapo where you want your objects to be pasted:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Set PPSlide = objPresentation.Slides(2)&amp;nbsp; 'Change 2 for the number of the diapo you prefer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Regards.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Feb 2016 11:05:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368409#M1178911</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-22T11:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368410#M1178912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;P&gt;I am using code (orginal) as below ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;BR /&gt; &lt;BR /&gt; set objPPT = CreateObject("PowerPoint.Application")&lt;BR /&gt; &lt;BR /&gt; objPPT.Visible = True&lt;BR /&gt; &lt;BR /&gt; Set objPresentation = objPPT.Presentations.Add&lt;BR /&gt; &lt;BR /&gt; ActiveDocument.Sheets("SH01").Activate&lt;BR /&gt; &lt;BR /&gt; Set obj = ActiveDocument.GetSheetObject("CH03")&lt;BR /&gt; &lt;BR /&gt; Set PPSlide = objPresentation.Slides.Add(1,obj.GetObjectType)&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; obj.CopyTableToClipboard true&lt;BR /&gt; &lt;BR /&gt; With PPSlide&lt;BR /&gt; &lt;BR /&gt; objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;BR /&gt; &lt;BR /&gt; End With&lt;BR /&gt; &lt;BR /&gt; Set obj = ActiveDocument.GetSheetObject("CH04")&lt;BR /&gt; &lt;BR /&gt; Set PPSlide = objPresentation.Slides.Add(2,obj.GetObjectType)&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; obj.CopyTableToClipboard true&lt;BR /&gt; &lt;BR /&gt; With PPSlide&lt;BR /&gt; &lt;BR /&gt; objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;BR /&gt; &lt;BR /&gt; End With&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; End Sub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your code but in vain . It always goes in the second slide. I am sure I am missing something to add above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 02:34:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368410#M1178912</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-23T02:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368411#M1178913</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;I am looping to all the objects and pasting them in the predefine slidenos. I am able to do it for image successfully but not for table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 02:35:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368411#M1178913</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-23T02:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368412#M1178914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes sachin,&lt;/P&gt;&lt;P&gt;it goes always to the second slide because the instruction marks the second slide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You just have to adjust the instruction to point to the desired diapo. As example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;Set PPSlide = objPresentation.Slides(2)&amp;nbsp; '--&amp;gt;To point to the second slide&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Set PPSlide = objPresentation.Slides(4)&amp;nbsp; '--&amp;gt;To point to the forth slide&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 08:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368412#M1178914</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-23T08:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368413#M1178915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for typo, i mean to say the table always copies to slide 1 irrespective to the parameter you provide in obj.slides(eg 2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The logic absolutely works fine with "CopyBitmapToClipboard" but not CopyTableToClipboard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 08:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368413#M1178915</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-23T08:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368414#M1178916</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;While exporting the qlikview object into PPT, You have to maximize the qlikview object.&lt;/P&gt;&lt;P&gt;I don't know, you already did the same or not.. just to inform you to check these option.&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, 23 Feb 2016 10:21:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368414#M1178916</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2016-02-23T10:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368415#M1178919</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;From my experience, there's no need to maximize the object, at least if it's not minimized in the app. If minimized, I haven't tested it. Did you notice any problem while not minimized?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 11:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368415#M1178919</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-23T11:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368416#M1178921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have faced the issue for the minimized objects (But long time back). For minimized objects, we have to do maximize and export into ppt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its not minimized then same time you are keeping the multiple qlikview objects?&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, 23 Feb 2016 11:32:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368416#M1178921</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2016-02-23T11:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368417#M1178922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sathish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've just tested,&lt;/P&gt;&lt;P&gt;indeed there's an issue while exporting a minimized object by using the bitmap option [.CopyBitmapToClipboard()],&lt;/P&gt;&lt;P&gt;however, the export works properly when using the table option [.CopyTableToClipboard(true)] on a minimized object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing, I didn't know this weird behaviour! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 12:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368417#M1178922</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-23T12:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368418#M1178923</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;Yes i am doing that. Not sure what is the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 14:09:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368418#M1178923</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-23T14:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368419#M1178924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to replicate the issue ? or its some thing wrong in my macro only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 06:16:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368419#M1178924</guid>
      <dc:creator>sachingodhania</dc:creator>
      <dc:date>2016-02-24T06:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368420#M1178925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUB ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Const ppLayoutText = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objPPT = CreateObject("PowerPoint.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objPPT.Visible = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1, ppLayoutText)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetObject("CH03").CopyBitmapToClipboard&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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; Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(2, ppLayoutText)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetObject("CH04").CopyBitmapToClipboard&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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; Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine on my test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 09:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368420#M1178925</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-24T09:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to Copy &amp; Paste table into Powerpoint using paste special</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368421#M1178926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi againg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code saves the issue with the minimized objects, just in case you need it. If the object is minimized then restore it before Copy &amp;amp; Paste and then minimize it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUB ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Const ppLayoutText = 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim v&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objPPT = CreateObject("PowerPoint.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objPPT.Visible = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1, ppLayoutText)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set TargetObject = Activedocument.GetSheetObject("CH03")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If TargetObject.IsMinimized Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.Restore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&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; Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If v = 1 Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.Minimize&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set TargetObject = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(2, ppLayoutText)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set TargetObject = Activedocument.GetSheetObject("CH04")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If TargetObject.IsMinimized Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.Restore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&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; Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If v = 1 Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TargetObject.Minimize&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set TargetObject = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2016 09:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-Copy-Paste-table-into-Powerpoint-using-paste-special/m-p/368421#M1178926</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-24T09:07:50Z</dc:date>
    </item>
  </channel>
</rss>

