<?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: How to export 2 sheet object into one PPT slide in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120404#M891430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Sub ExportPPT&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 = "to powerpoint"&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 15&lt;BR /&gt; .width=600&lt;BR /&gt; .height=20&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.Sheets("YourSheet").Activate &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("YourChartID").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=150&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("YourChartID").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=150&lt;BR /&gt; end with &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Set PPSlide = Nothing&lt;BR /&gt; Set PPPres = Nothing&lt;BR /&gt; &lt;BR /&gt; End Sub &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;I hope that helps&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;beck&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Aug 2016 07:53:47 GMT</pubDate>
    <dc:creator>beck_bakytbek</dc:creator>
    <dc:date>2016-08-17T07:53:47Z</dc:date>
    <item>
      <title>How to export 2 sheet object into one PPT slide</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120402#M891428</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 want to export my chart into PPT. I have below requirement:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/134704_1.png" style="height: 269px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;When I click on Export to PPT button chart 1 and Pivot table which appears below of chart 1 should be export to one slide and Chart 2 and pivot table which appears below of chart 2 should be export in second slide, like this I need to export 10 charts.&lt;/P&gt;&lt;P&gt;Please help me regarding this. I know I need to write MACRO for this. Anyone who have the good MACRO knowledge please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120402#M891428</guid>
      <dc:creator>soha1902</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to export 2 sheet object into one PPT slide</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120403#M891429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this thread &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/609224"&gt;Re: Re: Macro to export more than one Sheet objects into PPT&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/54049"&gt;Export multiple objects to a single powerpoint slide&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 06:18:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120403#M891429</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-08-17T06:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to export 2 sheet object into one PPT slide</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120404#M891430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Sub ExportPPT&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 = "to powerpoint"&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 15&lt;BR /&gt; .width=600&lt;BR /&gt; .height=20&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.Sheets("YourSheet").Activate &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("YourChartID").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=150&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("YourChartID").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=150&lt;BR /&gt; end with &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;Set PPSlide = Nothing&lt;BR /&gt; Set PPPres = Nothing&lt;BR /&gt; &lt;BR /&gt; End Sub &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;I hope that helps&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"&gt;beck&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 07:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120404#M891430</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-08-17T07:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to export 2 sheet object into one PPT slide</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120405#M891431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Beck,&lt;/P&gt;&lt;P&gt;Thanks for your reply..Your code will export one slide.I want this to be continue to be other charts also. It will automatically add more slides as per charts available. also please see below screenshot&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/134726_2.png" style="height: 234px; width: 620px;" /&gt; &lt;/P&gt;&lt;P&gt;Charts objects are overlapping in the PPT. I want it will be display inside the PPT with similar width of both the charts. Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 09:08:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120405#M891431</guid>
      <dc:creator>soha1902</dc:creator>
      <dc:date>2016-08-17T09:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to export 2 sheet object into one PPT slide</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120406#M891432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this my example, that allows me to export a few couple of objects, try to implement my example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-ansi-language: EN-US;"&gt;Sub ExportPPT&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 = "to powerpoint from access_point"&lt;BR /&gt; .Left = 100&lt;BR /&gt; .top = 15&lt;BR /&gt; .width=600&lt;BR /&gt; .height=20&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.Sheets("SH02").Activate &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH04").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=150&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("CH05").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=150&lt;BR /&gt; end with &lt;BR /&gt; ActiveDocument.GetSheetObject("CH06").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=150&lt;BR /&gt; end with&lt;BR /&gt; ActiveDocument.GetSheetObject("CH07").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=150&lt;BR /&gt; end with&lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH08").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=150&lt;BR /&gt; end with &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH09").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("TX12").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;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-ansi-language: EN-US;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-ansi-language: EN-US;"&gt;i hope that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-ansi-language: EN-US;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: black; font-family: 'Courier New'; font-size: 9pt; mso-ansi-language: EN-US;"&gt;beck&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2016 09:27:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-2-sheet-object-into-one-PPT-slide/m-p/1120406#M891432</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2016-08-17T09:27:58Z</dc:date>
    </item>
  </channel>
</rss>

