<?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 a Straight Table to Power Point (PPT) using Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572909#M213410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Along with the "Jerem1234" code, make sure to set the module security to "System Acess" &amp;amp; Local security to "allow system access" in macro editor. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jan 2014 18:37:04 GMT</pubDate>
    <dc:creator>phaneendra_kunc</dc:creator>
    <dc:date>2014-01-27T18:37:04Z</dc:date>
    <item>
      <title>Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572905#M213406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to export one Straight Table to a Power Point [may be using a button] using Macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any valuable suggestions will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:21:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572905#M213406</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-27T14:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572906#M213407</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;&lt;/P&gt;&lt;P&gt;I used the below Macro. Its getting functioned properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Export()&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;obj.ExportBiff "C:\Users\dicky\Documents\Export.ppt"&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;But afterwards am unable to open the desired PPT. Its throwing below error. Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Error.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/52180_Error.png" style="width: 620px; height: 108px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 17:05:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572906#M213407</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-27T17:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572907#M213408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any help please??? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572907#M213408</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-27T18:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572908#M213409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here try this set of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set objPPT = 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&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,obj.GetObjectType)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("CH01").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should open up your Powerpoint with the image pasted, then you can save it wherever.&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>Mon, 27 Jan 2014 18:29:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572908#M213409</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-27T18:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572909#M213410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Along with the "Jerem1234" code, make sure to set the module security to "System Acess" &amp;amp; Local security to "allow system access" in macro editor. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:37:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572909#M213410</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2014-01-27T18:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572910#M213411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Mr. Phani...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution was just a finishing touch. &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;Could you please let me know the functionality of the solution you have suggested?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572910#M213411</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-27T18:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572911#M213412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Jerem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This really helped along with the solution provided by Phaneendra.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kudos to both!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:50:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572911#M213412</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-27T18:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572912#M213413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you mind marking this discussion as correct/helpful so that others may find this as useful. &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;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 19:06:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572912#M213413</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-27T19:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572913#M213414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jerem and Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exported thing to PPT was just a screenshot of the Straight Table. Users can't se the full set of records.&lt;/P&gt;&lt;P&gt;Now my requirement is to send the full records to PPT and that too in editable mode. Users can change the values of their own too.&lt;/P&gt;&lt;P&gt;Something like in this attached example. Please help.&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, 29 Jan 2014 05:27:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572913#M213414</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-01-29T05:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572914#M213415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm... I rewrote the code, but I am having trouble pasting it in PowerPoint. Seems like &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;PPSlide.Shapes.Paste isn't doing the trick. The code below will copy table to clipboard, and you can manually hit paste or cntrl-v in the powerpoint, but for some reason the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;PPSlide.Shapes.Paste&lt;/SPAN&gt; isn't working. The code I have is below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set objPPT = 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 PPSlide = objPresentation.Slides.Add(1,obj.GetObjectType)&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; obj.CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'PPSlide.Shapes.Paste&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;Maybe someone else can resolve this issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 17:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572914#M213415</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-29T17:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572915#M213416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set objPPT = 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("CH05")&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set PPSlide = objPresentation.Slides.Add(1,obj.GetObjectType)&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; obj.CopyValuesToClipboard&lt;/P&gt;&lt;P&gt;&amp;nbsp; PPSlide.Shapes.Paste&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;Not the best looking since it just copies the values, but powerpoint seems to have trouble pasting the table.&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 18:13:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572915#M213416</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-29T18:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572916#M213417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally got it, however it will only work with PowerPoint 2010 and greater. They added a command to keep source formatting in this version which works with the copied table. Try this set of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ppt&lt;/P&gt;&lt;P&gt;&amp;nbsp; set objPPT = 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 PPSlide = 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; With PPSlide&lt;/P&gt;&lt;P&gt;&amp;nbsp; objPPT.CommandBars.ExecuteMso ("PasteSourceFormatting")&lt;/P&gt;&lt;P&gt;&amp;nbsp; End With&lt;/P&gt;&lt;P&gt;End Sub&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 18:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572916#M213417</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-29T18:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Export a Straight Table to Power Point (PPT) using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572917#M213418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Jerem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's a great effort and much helpful solution. This is what I needed. Cheers for you!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Feb 2014 05:08:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-Straight-Table-to-Power-Point-PPT-using-Macro/m-p/572917#M213418</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2014-02-02T05:08:31Z</dc:date>
    </item>
  </channel>
</rss>

