<?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 Troubleshooting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664922#M673068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt; : it works now. Thanks a lot for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/137650"&gt;Rajesh Vaswani&lt;/A&gt; : thanks a lot for your efforts in helping me and&amp;nbsp; Response was really quick. thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day. both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Sep 2014 09:41:13 GMT</pubDate>
    <dc:creator>marksmunich</dc:creator>
    <dc:date>2014-09-10T09:41:13Z</dc:date>
    <item>
      <title>Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664907#M673053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running a macro in my qlikview document and i have a Trigger on a button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code in the macro module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine when i click on the test in the edit module console, but it doesnt work when i click on the button, I have also made Setting in the document properties Macro override security and also in macro edit module I have set requested module securit to System Access and also current local security. Is there any mistake in this process. btw i got this code from the community. what is this SUB callexample after the function. Do i Need to replace it with my qvw document Name or just leave it as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ExcelExport(objID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set obj = ActiveDocument.GetSheetObject( objID )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; w = obj.GetColumnCount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if obj.GetRowCount&amp;gt;1001 then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; h=1000 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else h=obj.GetRowCount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set objExcel = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; objExcel.Workbooks.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; objExcel.Worksheets(1).select()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; objExcel.Visible = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set CellMatrix = obj.GetCells2(0,0,w,h)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; column = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; for cc=0 to w-1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.Cells(1,column).Value = CellMatrix(0)(cc).Text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.Cells(1,column).EntireRow.Font.Bold = True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; column = column +1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; c = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; r =2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; for RowIter=1 to h-1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for ColIter=0 to w-1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objExcel.Cells(r,c).Value = CellMatrix(RowIter)(ColIter).Text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c = c +1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; r = r+1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; c = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END FUNCTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB CallExample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ExcelExport( "CH06" )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END SUB &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:29:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664907#M673053</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T07:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664908#M673054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use a msgbox in code to print the values at various points in code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will help you debug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;msgbox "hello world"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:30:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664908#M673054</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T07:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664909#M673055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this makes no difference. I can see the result when iam in the Macro edit module, when i hit test, Excel is generated, but when i Close this macros module and hit on the button in the layout document which has Trigger to run this macro, the Excel is not generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even i see Helloword Msg box, when i test in the macro module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:35:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664909#M673055</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T07:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664910#M673056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Macro module. can you make sure that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Requested module security is set to System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)Current local security is set to Allow System Access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664910#M673056</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T07:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664911#M673057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MsgBox shouldn't make a difference, but by placing them in your code you can see where it fails.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664911#M673057</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2014-09-10T07:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664912#M673058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also in the QEMC &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;QlikView Servers, expand and click, Seucrity tab in the right pane "Allow unsafe macro execution on server" and "Allow macro execution on server" ticked) and in the Macro editor, (Ctrl + M, bottom left drop downs)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:43:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664912#M673058</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T07:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664913#M673059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/4526"&gt;Jerry Svensson&lt;/A&gt;&amp;nbsp; Ya I got the Point. since iam not much familiar with Macro Code,&amp;nbsp; it doesnt help me either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/137650"&gt;Rajesh Vaswani&lt;/A&gt; :&lt;/P&gt;&lt;P&gt;i have both Settings in macro module enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Requested module security is set to System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)Current local security is set to Allow System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyother changes ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still it is not working, when i hit ´button on frontend which runs this macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664913#M673059</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T07:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664914#M673060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you made a server side change for,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;QEMC&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;QlikView Servers, expand and click, Seucrity tab in the right pane "Allow unsafe macro execution on server" and "Allow macro execution on server" ticked) and in the Macro editor, (Ctrl + M, bottom left drop downs)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;please restart the services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 08:02:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664914#M673060</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T08:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664915#M673061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even These Options have been enabled before this application is developed. More over&amp;nbsp; this has not been deployed. yet. i am just testing this on the develper tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 08:06:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664915#M673061</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T08:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664916#M673062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the call in trigger external run macro calling the macro? Comment out all code and just put a message box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the macro function should be called by just the name in that box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 08:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664916#M673062</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T08:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664917#M673063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/137650"&gt;Rajesh Vaswani&lt;/A&gt; : the following is my Approach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a button and it has the following Trigger.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="mcr.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/66449_mcr.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have clicked on edit module and Input the macro Name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is the code in the Macro module.&lt;IMG alt="mcr1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/66450_mcr1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have enabled the following in the macro module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="mcr3.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/66451_mcr3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is what i did. Since I am not familiar with how macro works, i connot provide you more info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 08:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664917#M673063</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T08:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664918#M673064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;Possible to upload your qvw file here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:24:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664918#M673064</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2014-09-10T09:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664919#M673065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your macro takes a input parameter that you are not passing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function excelexport(objID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that seems to be the cause. Can you pass a value there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:27:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664919#M673065</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-09-10T09:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664920#M673066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the trigger macro name, put the subroutine name&amp;nbsp; "CallExample" instead of the function name and try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:35:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664920#M673066</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-09-10T09:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664921#M673067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont think so, beacuse it is just a function and át the end we are calling the function where we are proving the object id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664921#M673067</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T09:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664922#M673068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt; : it works now. Thanks a lot for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/137650"&gt;Rajesh Vaswani&lt;/A&gt; : thanks a lot for your efforts in helping me and&amp;nbsp; Response was really quick. thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice day. both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 09:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664922#M673068</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T09:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664923#M673069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/26418"&gt;tresesco&lt;/A&gt; : any idea how to save this generated Excel document.&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, 10 Sep 2014 13:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664923#M673069</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-09-10T13:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Troubleshooting</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664924#M673070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;objExcel.ActiveWorkbook.SaveAs("C:\...\test1.xls")&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;objExcel.Quit&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2014 13:17:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Troubleshooting/m-p/664924#M673070</guid>
      <dc:creator />
      <dc:date>2014-09-16T13:17:08Z</dc:date>
    </item>
  </channel>
</rss>

