<?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: Embedding images to PowerPoint in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Embedding-images-to-PowerPoint/m-p/566604#M211376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ppt&lt;/P&gt;&lt;P&gt;'An array with the objects you want to export to powerpoint&lt;/P&gt;&lt;P&gt;Dim myArray(1)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;myArray(0) = "LB01"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;'Create ppt object&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;'Apply a template if you want one&lt;/P&gt;&lt;P&gt;'objPresentation.ApplyTemplate _&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ' ("C:\mytemplate.ppt")&lt;BR /&gt; &lt;BR /&gt;'For each object in the array create a new slide and paste it.&lt;/P&gt;&lt;P&gt;For each item in myArray&lt;/P&gt;&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject(item).CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;Next&lt;BR /&gt; &lt;BR /&gt;'Clean up&lt;/P&gt;&lt;P&gt;Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;Set PPPres = Nothing&lt;/P&gt;&lt;P&gt;Set PPApp = Nothing&lt;BR /&gt; &lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create one button,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to button properties -&amp;gt; Action -&amp;gt; select (Run Macro) Action -&amp;gt; In Text box Write Macro Name as ppt -&amp;gt; ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Instead of LB01 put your object Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Regards,&lt;/P&gt;&lt;P&gt;Vishal Waghole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2014 07:43:02 GMT</pubDate>
    <dc:creator>VishalWaghole</dc:creator>
    <dc:date>2014-03-27T07:43:02Z</dc:date>
    <item>
      <title>Embedding images to PowerPoint</title>
      <link>https://community.qlik.com/t5/QlikView/Embedding-images-to-PowerPoint/m-p/566603#M211375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried coping pasting a table from Access Point to Power Point , I got a package convert pop up box as attached in the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody guide me with the right steps to paste charts from Access Point to Power Point??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 07:05:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Embedding-images-to-PowerPoint/m-p/566603#M211375</guid>
      <dc:creator />
      <dc:date>2014-03-27T07:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Embedding images to PowerPoint</title>
      <link>https://community.qlik.com/t5/QlikView/Embedding-images-to-PowerPoint/m-p/566604#M211376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ppt&lt;/P&gt;&lt;P&gt;'An array with the objects you want to export to powerpoint&lt;/P&gt;&lt;P&gt;Dim myArray(1)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;myArray(0) = "LB01"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;'Create ppt object&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;'Apply a template if you want one&lt;/P&gt;&lt;P&gt;'objPresentation.ApplyTemplate _&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ' ("C:\mytemplate.ppt")&lt;BR /&gt; &lt;BR /&gt;'For each object in the array create a new slide and paste it.&lt;/P&gt;&lt;P&gt;For each item in myArray&lt;/P&gt;&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject(item).CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt;PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt;Next&lt;BR /&gt; &lt;BR /&gt;'Clean up&lt;/P&gt;&lt;P&gt;Set PPSlide = Nothing&lt;/P&gt;&lt;P&gt;Set PPPres = Nothing&lt;/P&gt;&lt;P&gt;Set PPApp = Nothing&lt;BR /&gt; &lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create one button,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to button properties -&amp;gt; Action -&amp;gt; select (Run Macro) Action -&amp;gt; In Text box Write Macro Name as ppt -&amp;gt; ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Instead of LB01 put your object Id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Regards,&lt;/P&gt;&lt;P&gt;Vishal Waghole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 07:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Embedding-images-to-PowerPoint/m-p/566604#M211376</guid>
      <dc:creator>VishalWaghole</dc:creator>
      <dc:date>2014-03-27T07:43:02Z</dc:date>
    </item>
  </channel>
</rss>

