<?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: Macro through server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464046#M173301</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is old post. I am having the same issue. Would like to understand if you got any solution on this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Aug 2014 21:12:48 GMT</pubDate>
    <dc:creator>brindlogcool</dc:creator>
    <dc:date>2014-08-26T21:12:48Z</dc:date>
    <item>
      <title>Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464041#M173296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, i've built a macro to copy a table from qlikview and put it into excel. When i open the document using 'open in server' it simply opens excel and doesn't do anything more. Can anyone help me? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464041#M173296</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-17T14:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464042#M173297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry - should have been clearer. When i run the macro using 'open in server' it simply opens excel and doesnt do anything more. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:59:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464042#M173297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-17T14:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464043#M173298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; How is differ from Eport to Excel functionality ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply me the same.&lt;/P&gt;&lt;P&gt;//Yusuf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 16:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464043#M173298</guid>
      <dc:creator />
      <dc:date>2013-04-17T16:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464044#M173299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i dont really undersand what you mean. Here is the code i'm using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Export_to_spreadsheet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.ClearAll true&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'ActiveDocument.GetSheetObject("CH336").restore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set the path where the excel will be saved&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; filePath = "H:\TestBB.xls"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Excel spreadsheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Visible = true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the WorkBook&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set WorkBook = excelFile.WorkBooks.Add&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Sheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Sheet = WorkBook.WorkSheets(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Get the chart we want to export&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set tableToExport = ActiveDocument.GetSheetObject("CH327")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set chartProperties = tableToExport.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableToExport.CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Get the caption&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; chartCaption = tableToExport.GetCaption.Name.v&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MsgBox chartCaption &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set the first cell with the caption&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet.Range("A1") = chartCaption&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Paste the rest of the chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet.Paste Sheet.Range("A2")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Visible = true&lt;/P&gt;&lt;P&gt; ActiveDocument.GetSheetObject("CH327").minimize&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Cleanup&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set WorkBook = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = nothing&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 16:23:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464044#M173299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-17T16:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464045#M173300</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As you said you are performing macro on Server just wanted to check have you tried this macro on your Local machine ( Desktop) . If it is working fine then i think there might be Compability of some macros to run on server ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i'm not sure .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply me for the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 16:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464045#M173300</guid>
      <dc:creator />
      <dc:date>2013-04-17T16:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Macro through server</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464046#M173301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is old post. I am having the same issue. Would like to understand if you got any solution on this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2014 21:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-through-server/m-p/464046#M173301</guid>
      <dc:creator>brindlogcool</dc:creator>
      <dc:date>2014-08-26T21:12:48Z</dc:date>
    </item>
  </channel>
</rss>

