<?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: Export Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908300#M984323</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objWord = CreateObject("Word.Application")&lt;BR /&gt; &lt;BR /&gt; objWord.visible =true&lt;BR /&gt; &lt;BR /&gt; objWord.Documents.open "C:\Users\samuel.brierley\Desktop\External Projects\NRA\NRA_ITS_EMC_Report_Template.docx"&lt;BR /&gt; &lt;BR /&gt; Const wdOrientLandscape = 1&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH18").CopyBitmapToClipboard &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; objWord.wdGoToBookmark "Equipment_Added" &lt;BR /&gt; With ActiveDocument.Bookmarks&lt;BR /&gt; .DefaultSorting = wdSortByName&lt;BR /&gt; .ShowHidden = False&lt;BR /&gt; End With&lt;BR /&gt; Selection.PasteSpecial Link=False, DataType=wdPasteBitmap, Placement= wdInLine, DisplayAsIcon=False&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; end sub &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Aug 2015 13:35:27 GMT</pubDate>
    <dc:creator>samuel_brierley</dc:creator>
    <dc:date>2015-08-03T13:35:27Z</dc:date>
    <item>
      <title>Export Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908296#M984319</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;for some reason the below code keeps getting stuck at the goto clause&lt;/P&gt;&lt;P&gt;thanks for any help on this guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ExportGraph()&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; Set objWord = CreateObject("Word.Application")&lt;BR /&gt; &lt;BR /&gt; objWord.visible =true&lt;BR /&gt; &lt;BR /&gt; objWord.Documents.open "C:\Users\samuel.brierley\Desktop\External Projects\NRA\NRA_ITS_EMC_Report_Template.docx"&lt;BR /&gt; &lt;BR /&gt; Const wdOrientLandscape = 1&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH18").CopyBitmapToClipboard &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; GoTo What:=objWord.wdGoToBookmark, Name:="Equipment_Added" &lt;BR /&gt; With ActiveDocument.Bookmarks&lt;BR /&gt; .DefaultSorting = wdSortByName&lt;BR /&gt; .ShowHidden = False&lt;BR /&gt; End With&lt;BR /&gt; Selection.PasteSpecial Link:=False, DataType:=wdPasteBitmap, Placement:= _&lt;BR /&gt; wdInLine, DisplayAsIcon:=False&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; end sub &lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908296#M984319</guid>
      <dc:creator>samuel_brierley</dc:creator>
      <dc:date>2015-08-03T13:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Export Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908297#M984320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe that the only way to use GoTo in vbscript is with error handling:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Error GoTo What&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:25:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908297#M984320</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2015-08-03T13:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Export Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908298#M984321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Within qlikview only &lt;STRONG&gt;On Error Resume Next&lt;/STRONG&gt; is available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908298#M984321</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-03T13:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Export Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908299#M984322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That was recorded within word, the idea is to GoTo the bookmark and paste the image there &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908299#M984322</guid>
      <dc:creator>samuel_brierley</dc:creator>
      <dc:date>2015-08-03T13:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Export Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908300#M984323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objWord = CreateObject("Word.Application")&lt;BR /&gt; &lt;BR /&gt; objWord.visible =true&lt;BR /&gt; &lt;BR /&gt; objWord.Documents.open "C:\Users\samuel.brierley\Desktop\External Projects\NRA\NRA_ITS_EMC_Report_Template.docx"&lt;BR /&gt; &lt;BR /&gt; Const wdOrientLandscape = 1&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; ActiveDocument.GetSheetObject("CH18").CopyBitmapToClipboard &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; objWord.wdGoToBookmark "Equipment_Added" &lt;BR /&gt; With ActiveDocument.Bookmarks&lt;BR /&gt; .DefaultSorting = wdSortByName&lt;BR /&gt; .ShowHidden = False&lt;BR /&gt; End With&lt;BR /&gt; Selection.PasteSpecial Link=False, DataType=wdPasteBitmap, Placement= wdInLine, DisplayAsIcon=False&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; end sub &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 13:35:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-Macro/m-p/908300#M984323</guid>
      <dc:creator>samuel_brierley</dc:creator>
      <dc:date>2015-08-03T13:35:27Z</dc:date>
    </item>
  </channel>
</rss>

