<?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: image formatting issue when using macro to export in ppt in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151384#M29251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing this. Is there a way each chart can be pasted in new slide?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Jun 2015 07:02:47 GMT</pubDate>
    <dc:creator>Digvijay_Singh</dc:creator>
    <dc:date>2015-06-06T07:02:47Z</dc:date>
    <item>
      <title>image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151381#M29248</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;I implemented a macro button on dashboard to export all chart objects to powerpoint.&lt;/P&gt;&lt;P&gt;I want macro to go through all tabs and place all charts on ppt automatically after I click the button.&lt;/P&gt;&lt;P&gt;I have code written but it has image formatting issues that I can not place images neatly on ppt.&lt;/P&gt;&lt;P&gt;I tried to position images with function .left .top, etc. but it creates an error.&lt;/P&gt;&lt;P&gt;Does anyone know how to deal with it?&lt;/P&gt;&lt;P&gt;I attached an example to show what I am trying to do.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Ryan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2009 23:07:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151381#M29248</guid>
      <dc:creator />
      <dc:date>2009-11-13T23:07:06Z</dc:date>
    </item>
    <item>
      <title>image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151382#M29249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I had the same issue. In the end what i did was generate a macro which saves the charts tables, etc as jpg's. I have then dynically linked these in Powerpoint so that every time i run the export i can refresh back to the lates version of the images.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Mar 2010 14:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151382#M29249</guid>
      <dc:creator />
      <dc:date>2010-03-12T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151383#M29250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ryan,&lt;/P&gt;&lt;P&gt;replace your copy and paste instructions with the following set of instructions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH01").CopyBitmapToClipboard&lt;BR /&gt;PPSlide.Shapes.Paste&lt;BR /&gt; with PPSlide.Shapes(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .left = 10 'replace this value with your value&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .top = 20 'replace this value with your value&lt;BR /&gt; end with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ActiveDocument.GetSheetObject("CH02").CopyBitmapToClipboard&lt;/P&gt;&lt;P&gt; PPSlide.Shapes.Paste&lt;/P&gt;&lt;P&gt; with PPSlide.Shapes(2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .left = 50 'replace this value with your value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .top = 20 'replace this value with your value&lt;/P&gt;&lt;P&gt; end with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ActiveDocument.GetSheetObject("CH03").CopyBitmapToClipboard&lt;BR /&gt; PPSlide.Shapes.Paste&lt;BR /&gt; with PPSlide.Shapes(3)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .left = 80 'replace this value with your value&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .top = 20 'replace this value with your value&lt;BR /&gt; end with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 01:11:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151383#M29250</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-06-06T01:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151384#M29251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing this. Is there a way each chart can be pasted in new slide?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 07:02:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151384#M29251</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-06-06T07:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151385#M29252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Digvijay,&lt;/P&gt;&lt;P&gt;yes, you have to add a new slide to the ppt with &lt;STRONG&gt;Set PPSlide = PPPres.Slides.Add(1, 1)&lt;/STRONG&gt;&amp;nbsp; instruction and then pate a chart in the new one slide with &lt;STRONG&gt;PPSlide.Shapes.Paste&lt;/STRONG&gt; instruction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 20:37:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151385#M29252</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-06-06T20:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: image formatting issue when using macro to export in ppt</title>
      <link>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151386#M29253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, got it. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 09:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/image-formatting-issue-when-using-macro-to-export-in-ppt/m-p/151386#M29253</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-06-11T09:42:44Z</dc:date>
    </item>
  </channel>
</rss>

