<?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 Export QV objects to ppt template in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019511#M345060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Colleagues, good day!&lt;/P&gt;&lt;P&gt;My model has macro which export charts to new power point presentation.&lt;/P&gt;&lt;P&gt;Tell me please, is there in qv macro ability to export objects into ppt template (not creating new presentation) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There're test model and necessary ppt template in attachment.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jan 2016 11:42:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-01-18T11:42:53Z</dc:date>
    <item>
      <title>Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019511#M345060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Colleagues, good day!&lt;/P&gt;&lt;P&gt;My model has macro which export charts to new power point presentation.&lt;/P&gt;&lt;P&gt;Tell me please, is there in qv macro ability to export objects into ppt template (not creating new presentation) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There're test model and necessary ppt template in attachment.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 11:42:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019511#M345060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T11:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019512#M345061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well there is nothing stopping you from storing the PowerPoint presentation as a POTX-file (PowerPoint Template). You can either do it manually with File Save As and select it or you can do it directly in your macro. The PowerPoint object model supports that by using the method SaveAs on the presentation object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 12:29:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019512#M345061</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-01-18T12:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019513#M345062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;My answer was - how i can export objects directly by macro???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 12:35:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019513#M345062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T12:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019514#M345063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi andrey try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ExportPPT_1&lt;BR /&gt; Set objPPT = CreateObject("PowerPoint.Application")&lt;BR /&gt; objPPT.Visible = True&lt;BR /&gt; Set objPresentation = objPPT.Presentations.Add&lt;BR /&gt; Set PPSlide = objPresentation.Slides.Add(1,11)&lt;BR /&gt; &lt;BR /&gt; set up = ActiveDocument.GetApplication.GetUserPreferences &lt;BR /&gt; up.ChartUseCapNBorder = True&lt;BR /&gt; ActiveDocument.GetApplication.SetUserPreferences up&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; with objPresentation.Slides(1).Shapes(1)&lt;BR /&gt; .TextFrame.TextRange = "Test für PowerPoint Seite 1"&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 15&lt;BR /&gt; .width=500&lt;BR /&gt; .height=20&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.Sheets("SH01").Activate &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("TX01").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.PasteSpecial(PasteHTML)&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 45&lt;BR /&gt; .width=100&lt;BR /&gt; .height=160&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("TX02").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 200&lt;BR /&gt; .width=100&lt;BR /&gt; .height=160&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("TX03").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 355&lt;BR /&gt; .width=100&lt;BR /&gt; .height=160&lt;BR /&gt; end with&lt;BR /&gt; ActiveDocument.GetSheetObject("TX04").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 400&lt;BR /&gt; .top = 45&lt;BR /&gt; .width=100&lt;BR /&gt; .height=160&lt;BR /&gt; end with&lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("TX05").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 400&lt;BR /&gt; .top = 200&lt;BR /&gt; .width=100&lt;BR /&gt; .height=160&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("TX06").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 400&lt;BR /&gt; .top = 355&lt;BR /&gt; .width=100&lt;BR /&gt; .height=150&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("TX09").CopyBitmapToClipboard&lt;BR /&gt; with objPresentation.Slides(1).Shapes.Paste&lt;BR /&gt; .Left = 408&lt;BR /&gt; .top = 510&lt;BR /&gt; .width=80&lt;BR /&gt; .height=25&lt;BR /&gt; end with &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;if that helps you, let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 12:54:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019514#M345063</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-01-18T12:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019515#M345064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Beck,&amp;nbsp; Will the above code work from access point by pressing a button.&amp;nbsp; My doubt here is macros which creates objects like Excel, Powerpoint will work from access point.&amp;nbsp; Thanks Kiran&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 13:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019515#M345064</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-01-18T13:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019516#M345065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use nPrinting &lt;A href="http://global.qlik.com/es/explore/products/qlikview/nprinting" title="http://global.qlik.com/es/explore/products/qlikview/nprinting"&gt;Introducing QlikView NPrinting | Qlik&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 13:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019516#M345065</guid>
      <dc:creator />
      <dc:date>2016-01-18T13:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019517#M345066</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;Check now,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 13:49:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019517#M345066</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-18T13:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019518#M345067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran, i understand your doubt, but i use These code in Access Point, and it does work. of cource in Internet Explorer plugin-Modus.&lt;/P&gt;&lt;P&gt;if you have any question, i can send my example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 13:56:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019518#M345067</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-01-18T13:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019519#M345068</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;UL&gt;&lt;LI&gt;I tried over access point but not working no response (IE Plugin)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I already enabled macros on QMC too.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Its working fine on local qv desktop .&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me have i missed anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 14:09:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019519#M345068</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-18T14:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019520#M345069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, you say it is possible through only IE but not Chrome or FireFox.&amp;nbsp; I earlier tried Excel export of some bar charts but was not successful even with IE plugin.&amp;nbsp; I think it would be glad if you can create a post for IE what are the steps to achieve using a sample Excel and PPT export.&amp;nbsp; Thanks Kiran &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 14:36:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019520#M345069</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-01-18T14:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019521#M345070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear, thanks!&lt;/P&gt;&lt;P&gt;It works, but macro export charts into new presentation. &lt;/P&gt;&lt;P&gt;I need to use file template (Template.pptx in attachment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards, Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 14:37:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019521#M345070</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T14:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019522#M345071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i posted above my code and you can try to implement in your qv-Environment. Let me know when you solve this issue.&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 14:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019522#M345071</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-01-18T14:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019523#M345072</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;You can use that particular Presentation file as per your requirement you can rename it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 15:29:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019523#M345072</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-18T15:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019524#M345073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear, thanks for your advice.&lt;/P&gt;&lt;P&gt;But your example manualy create new presentation with text on top and others objects from QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to use current template, which is, for example, saved on disk D and macro must open it and paste objects from QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, Andrey&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 18:06:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019524#M345073</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T18:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019525#M345074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i've already solved my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Set objPresentation = objPPT.Presentations.Open(datapath with ppt template)&lt;/STRONG&gt; instead &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Set objPresentation = objPPT.Presentations.Add&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 20:26:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019525#M345074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T20:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019526#M345075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&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;Hirish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 05:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019526#M345075</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-19T05:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019527#M345076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you post you code as example,&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 08:33:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019527#M345076</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-01-19T08:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019528#M345077</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;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14531937537703974 jive_text_macro" jivemacro_uid="_14531937537703974" modifiedtitle="true"&gt;
&lt;P&gt;Sub ExportPPT&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set objPPT = CreateObject("PowerPoint.Application")&amp;nbsp; &lt;/P&gt;
&lt;P&gt;objPPT.Visible = True&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set objPresentation = objPPT.Presentations.open("YourPath\ppt.pptx")'file Path&lt;/P&gt;
&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(1,12)&amp;nbsp; &lt;/P&gt;
&lt;P&gt;ActiveDocument.GetSheetObject("CH02").CopyBitmapToClipboard&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes.Paste&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Top = 150 'This sets the top location of the image&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Left = 15 'This sets the left location&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Width = 240&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Height = 250&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(1,12)&amp;nbsp; &lt;/P&gt;
&lt;P&gt;ActiveDocument.GetSheetObject("CH02").CopyBitmapToClipboard&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes.Paste&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Top = 150 'This sets the top location of the image&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Left = 15 'This sets the left location&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Width = 100&amp;nbsp; &lt;/P&gt;
&lt;P&gt;PPSlide.Shapes(PPSlide.Shapes.Count).Height = 200&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set PPSlide = Nothing&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set PPPres = Nothing&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Set PPApp = Nothing&amp;nbsp; &lt;/P&gt;
&lt;P&gt;End Sub&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 08:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019528#M345077</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-01-19T08:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019529#M345078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&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, 19 Jan 2016 08:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019529#M345078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-19T08:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export QV objects to ppt template</title>
      <link>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019530#M345079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your Blog/Help/Advice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 11:58:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-QV-objects-to-ppt-template/m-p/1019530#M345079</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-01-19T11:58:34Z</dc:date>
    </item>
  </channel>
</rss>

