<?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 Macro to export object into power point based on fixed size. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655756#M669806</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written a macro to export object from QlikView to power point.&lt;/P&gt;&lt;P&gt;Is it possible to export the object in a fixed shape (length,width and height) in order to avoid resizing of object in the power point and adjust the length, width and height in the script again. This will save considerable amount of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2014 12:03:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-03T12:03:23Z</dc:date>
    <item>
      <title>Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655756#M669806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have written a macro to export object from QlikView to power point.&lt;/P&gt;&lt;P&gt;Is it possible to export the object in a fixed shape (length,width and height) in order to avoid resizing of object in the power point and adjust the length, width and height in the script again. This will save considerable amount of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 12:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655756#M669806</guid>
      <dc:creator />
      <dc:date>2014-10-03T12:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655757#M669807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sneha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you share the macro? My team is looking to do similar thing they may be able to address this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greatly appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chetan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 14:58:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655757#M669807</guid>
      <dc:creator />
      <dc:date>2014-10-07T14:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655758#M669808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the size of the chart in qlikview. I'm sure you can change it once you get into powerpoint as well. To change it in qlikview you can use this code as example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub Size&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'rem double size of all sizable objects on active sheet &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;dim dummy(0)&amp;nbsp; 'dummy array indicates all parts of frame to be set&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Set obj = ActiveDocument.GetSheetObject("CH07")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set fr = obj.GetFrameDef&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set pos = fr.Rect&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oldWidth = pos.Width&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;oldHeight = pos.Height&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pos.Width = pos.Width * 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pos.Height = pos.height * 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;obj.SetFrame fr,true,dummy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'code to export chart to ppt here&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'now set the height and width back&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pos.Width = oldWidth&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pos.Height = oldHeight&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;obj.SetFrame fr,true,dummy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End Sub&lt;/STRONG&gt;&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>Tue, 07 Oct 2014 15:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655758#M669808</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-10-07T15:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655759#M669809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Jeremiah,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish to run the macro and then get a resized image directly in the power point.&lt;/P&gt;&lt;P&gt;Instead of reducing the size in the QlikView, by any chance can i export&amp;nbsp; a desired object along with a desired shape in power point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sneha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 07:54:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655759#M669809</guid>
      <dc:creator />
      <dc:date>2014-10-09T07:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655760#M669810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Hi Jeremiah,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;I tried to use this piece of code but its not working.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;sub Size&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;'rem double size of all sizable objects on active sheet&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;dim dummy(0)&amp;nbsp; 'dummy array indicates all parts of frame to be set&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;Set obj = ActiveDocument.GetSheetObject("CH07")&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;set fr = obj.GetFrameDef&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;set pos = fr.Rect&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;oldWidth = pos.Width&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;oldHeight = pos.Height&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;pos.Width = pos.Width * 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;pos.Height = pos.height * 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;obj.SetFrame fr,true,dummy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;'code to export chart to ppt here&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;'now set the height and width back&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;pos.Width = oldWidth&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;pos.Height = oldHeight&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;obj.SetFrame fr,true,dummy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;End Sub&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 08:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655760#M669810</guid>
      <dc:creator />
      <dc:date>2014-10-09T08:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655761#M669811</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 if this helps&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-7249" style="font-size: 10pt; line-height: 1.5em;" title="http://community.qlik.com/docs/DOC-7249"&gt;http://community.qlik.com/docs/DOC-7249&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 08:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655761#M669811</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-09T08:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655762#M669812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashfaq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help but the macro as mentioned in the&amp;nbsp; link doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sneha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 09:40:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655762#M669812</guid>
      <dc:creator />
      <dc:date>2014-10-09T09:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export object into power point based on fixed size.</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655763#M669813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome &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;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 09:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-object-into-power-point-based-on-fixed-size/m-p/655763#M669813</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-09T09:50:00Z</dc:date>
    </item>
  </channel>
</rss>

