<?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: Syntax Error in Macro Code.... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646043#M1058358</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Comment out all code and try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ExcelPath&lt;/P&gt;&lt;P&gt; MsgBox "Path Assigned"&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should give you a msgbox. If that doesn't work I have no idea what is wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Oct 2014 07:13:46 GMT</pubDate>
    <dc:creator>jerrysvensson</dc:creator>
    <dc:date>2014-10-17T07:13:46Z</dc:date>
    <item>
      <title>Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646034#M1058348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody suggest what is the syntax error in following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ExcelPath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim Path&lt;/P&gt;&lt;P&gt;Path="C:\"&lt;/P&gt;&lt;P&gt;MsgBox "Path Assigned"&lt;/P&gt;&lt;P&gt;call ExportChart&lt;/P&gt;&lt;P&gt;&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;Sub ExportChart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set XLAppWholeChart = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XLAppWholeChart.Visible = False&lt;/P&gt;&lt;P&gt;set XLDocWholeChart = XLAppWholeChart.Workbooks.Add&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH528").CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;XLDocWholeChart.Sheets(1).Paste()&lt;/P&gt;&lt;P&gt;XLDocWholeChart.Sheets(1).Name = "Export"&lt;/P&gt;&lt;P&gt;TableName="Flash Summary.xlsx"&lt;/P&gt;&lt;P&gt;File=Path&amp;amp;TableName&lt;/P&gt;&lt;P&gt;delfile(file) &lt;/P&gt;&lt;P&gt;XLDocWholeChart.SaveAs File&lt;/P&gt;&lt;P&gt;XLAppWholeChart.Quit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MsgBox "Exported"&lt;/P&gt;&lt;P&gt;'Object creation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call smtpsettings&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;sub delfile(file)&lt;/P&gt;&lt;P&gt;Set filesys = CreateObject("Scripting.FileSystemObject") &lt;/P&gt;&lt;P&gt;If filesys.FileExists(file) Then&lt;/P&gt;&lt;P&gt;filesys.DeleteFile file&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;MsgBox "File Deleted"&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;sub smtpsettings&lt;/P&gt;&lt;P&gt;Dim objEmail&lt;/P&gt;&lt;P&gt;Const cdoSendUsingPort = 2&amp;nbsp;&amp;nbsp; 'Send the message using SMTP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoAnonymous = 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Do not authenticate&lt;/P&gt;&lt;P&gt;Const cdoBasic = 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'basic (clear-text) authentication&lt;/P&gt;&lt;P&gt;Const cdoNTLM = 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NTLM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const SMTPServer = "smtp"&lt;/P&gt;&lt;P&gt;Const SMTPPort = 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Port number for SMTP&lt;/P&gt;&lt;P&gt;Const SMTPTimeout = 60&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Timeout for SMTP in seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Sending mail&lt;/P&gt;&lt;P&gt;Set objEmail = CreateObject("CDO.Message")&lt;/P&gt;&lt;P&gt;Set objConf = objEmail.Configuration&lt;/P&gt;&lt;P&gt;Set objFlds = objConf.Fields&lt;/P&gt;&lt;P&gt;With objFlds&lt;/P&gt;&lt;P&gt;'———————————————————————&lt;/P&gt;&lt;P&gt;' SMTP server details&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN&gt;") = cdoSendUsingPort&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN&gt;") = SMTPServer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;SPAN&gt;") = cdoAnonymous&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN&gt;") = SMTPPort&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;SPAN&gt;") = False&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"&gt;http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout&lt;/A&gt;&lt;SPAN&gt;") = SMTPTimeout&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.Update&lt;/P&gt;&lt;P&gt;'———————————————————————&lt;/P&gt;&lt;P&gt;End With&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objEmail.To = ""&lt;/P&gt;&lt;P&gt;objEmail.From = ""&lt;/P&gt;&lt;P&gt;objEmail.Subject = "Flash Summary"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objEmail.AddAttachment "C:\"&lt;/P&gt;&lt;P&gt;objEmail.Send&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFlds = Nothing&lt;/P&gt;&lt;P&gt;Set objConf = Nothing&lt;/P&gt;&lt;P&gt;Set objEmail = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox ("Test Mail Sent")&lt;/P&gt;&lt;P&gt;&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;Regards,&lt;/P&gt;&lt;P&gt;Balraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 13:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646034#M1058348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-16T13:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646035#M1058349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What error are you getting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are getting Macro parse failed. functionality was lost, I suggest that you comment out blocks of code until the error disappears. You should be able to get down the the offending line by repeating this with smaller blocks commented each time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 19:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646035#M1058349</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2014-10-16T19:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646036#M1058350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micheal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not getting any error in code, Macro parsing is perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I am clicking on button, I am not getting any message even exportation is also not happening...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me it seems, I am missing some thing in the code.............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 06:05:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646036#M1058350</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T06:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646037#M1058351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you set Requested Module Security to System Access and Current local Security to Allow System Access in the Macro dialogue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 06:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646037#M1058351</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2014-10-17T06:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646038#M1058352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done that......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 06:18:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646038#M1058352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T06:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646039#M1058354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Just to be sure. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Are you running in WebView mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 06:34:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646039#M1058354</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2014-10-17T06:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646040#M1058355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it mandatory???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 06:55:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646040#M1058355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T06:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646041#M1058356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, the opposite. When you use WebView in Developer, Macros will not work.&lt;/P&gt;&lt;P&gt;Using MsgBox and Ajax as client, fails the Macro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:05:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646041#M1058356</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2014-10-17T07:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646042#M1058357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Developer, I am not using any webview....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I comment Msgbox??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried without MsgBox as well but again it was not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After clicking on button I did not any message of failure or success!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646042#M1058357</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T07:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646043#M1058358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Comment out all code and try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ExcelPath&lt;/P&gt;&lt;P&gt; MsgBox "Path Assigned"&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should give you a msgbox. If that doesn't work I have no idea what is wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646043#M1058358</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2014-10-17T07:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646044#M1058359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What error exactly u r getting?&lt;/P&gt;&lt;P&gt;Seems your code is fine, it showing all the message boxes. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646044#M1058359</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2014-10-17T07:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646045#M1058360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried, but no luck..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not getting any messages box...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646045#M1058360</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T07:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646046#M1058361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am clicking on button but I am not getting any error or message or success with this code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't know what is wrong or Am I missing some settings for macro?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have crossed check the syntax and logic which is absolutely fine but not working in my case....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:26:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646046#M1058361</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T07:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646047#M1058362</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;Did you added the trigger to the button and called that macro?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:29:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646047#M1058362</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-10-17T07:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646048#M1058363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added action to button to run macro which is like a trigger, if I am not wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it required any other trigger as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:36:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646048#M1058363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T07:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646049#M1058364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you add action in the button as External-&amp;gt; Run Macro -&amp;gt; ExcelPath( macro name)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 07:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646049#M1058364</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2014-10-17T07:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646050#M1058365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Done the same thing..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:00:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646050#M1058365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T08:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646051#M1058366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you specified without any symbols right? because if you specify =,' it wont work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646051#M1058366</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2014-10-17T08:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646052#M1058367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not specified any symbol.....&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646052#M1058367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-17T08:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error in Macro Code....</title>
      <link>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646053#M1058368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better post your sample qv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:16:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Syntax-Error-in-Macro-Code/m-p/646053#M1058368</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2014-10-17T09:16:17Z</dc:date>
    </item>
  </channel>
</rss>

