<?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: 'Edit Module' popping up upon Macro Execution in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48943#M8111</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as i'm using a french version of excel, I have to change those 2 lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;oXL.Sheets("Feuil2").Delete&amp;nbsp; &lt;BR /&gt; oXL.Sheets("Feuil3" ).Delete&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when i execute the macro, creates a file test_.xls&lt;/P&gt;&lt;P&gt;if the file already exist, you have a popup on excel&amp;nbsp; to overwrite the file&lt;/P&gt;&lt;P&gt;and excel doesn't close but there is no error&lt;/P&gt;&lt;P&gt;are you sure the directory c:\temp exist and you are allowed to save documents in this directory ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2018 09:22:56 GMT</pubDate>
    <dc:creator>olivierrobin</dc:creator>
    <dc:date>2018-05-03T09:22:56Z</dc:date>
    <item>
      <title>'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48936#M8104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have incorporated a macro written by &lt;A href="https://community.qlik.com/qlik-users/178253"&gt;tamilarasu&lt;/A&gt; to export all tables in a sheet in one of my apps which I found in &lt;A _jive_internal="true" href="https://community.qlik.com/thread/213325"&gt;this link.&lt;/A&gt; The macro is exporting the tables to excel fine but after running, the 'Edit Module' box keeps popping up. I have read in some threads that this is caused due to some error in the macro. Please help me to identify if there's any mistake in the macro that I'm using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15253367614413506 jive_text_macro" jivemacro_uid="_15253367614413506"&gt;
&lt;P&gt;sub exportToExcel &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'==============================================================&lt;/P&gt;
&lt;P&gt;' File Path &amp;amp; Name&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; Path = "C:\temp\"&lt;/P&gt;
&lt;P&gt; FileName = "Test_"&lt;/P&gt;
&lt;P&gt; strSaveFile = Path &amp;amp; FileName&lt;/P&gt;
&lt;P&gt;'==============================================================&lt;/P&gt;
&lt;P&gt;'Open Excel&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;set oXL=CreateObject("Excel.Application") &lt;/P&gt;
&lt;P&gt;oXL.visible=True &lt;/P&gt;
&lt;P&gt;oXL.Workbooks.Add&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;aSheetObj=Array("CH391","CH392","CH393","CH394","CH395")&amp;nbsp; ' Chart ID's here&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'==============================================================&lt;/P&gt;
&lt;P&gt;for i=0 to UBound(aSheetObj)&lt;/P&gt;
&lt;P&gt; Set oSH = oXL.ActiveSheet&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; num_rows = oSH.UsedRange.Rows.Count&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; If num_rows = 1&amp;nbsp; then&lt;/P&gt;
&lt;P&gt; oSH.Range("A2").Select&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt; Else&lt;/P&gt;
&lt;P&gt; oSH.Range("A" &amp;amp; num_rows+4).Select &lt;/P&gt;
&lt;P&gt; End If&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; Set obj = ActiveDocument.GetSheetObject(aSheetObj(i))&lt;/P&gt;
&lt;P&gt; obj.CopyTableToClipboard True&lt;/P&gt;
&lt;P&gt; oSH.Paste &lt;/P&gt;
&lt;P&gt; sCaption=obj.GetCaption.Name.v&lt;/P&gt;
&lt;P&gt; set obj=Nothing&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;oSH.Cells.Select&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;oSH.Columns("A").ColumnWidth = 12.17&lt;/P&gt;
&lt;P&gt;oSH.Columns("B").ColumnWidth = 12.17&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; If num_rows = 1&amp;nbsp; then&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp; num_rows).Value = sCaption&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp; num_rows).Font.Bold = True&lt;/P&gt;
&lt;P&gt;'oSH.Range("A" &amp;amp; num_rows).Font.ColorIndex = 3&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp; num_rows).Interior.ColorIndex = 40&lt;/P&gt;
&lt;P&gt; Else&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp; num_rows+3).Value&amp;nbsp; = sCaption&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp; num_rows+3).Font.Bold = True&lt;/P&gt;
&lt;P&gt;'oSH.Range("A" &amp;amp; num_rows+3).Font.ColorIndex = 3&lt;/P&gt;
&lt;P&gt;oSH.Range("A" &amp;amp;num_rows+3).Interior.ColorIndex = 40&lt;/P&gt;
&lt;P&gt; End If&lt;/P&gt;
&lt;P&gt; 'oXL.Selection.Columns.AutoFit&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&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;&amp;nbsp; oSH.Range("A1").Select&lt;/P&gt;
&lt;P&gt;&amp;nbsp; oXL.Sheets("Sheet2").Delete&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; oXL.Sheets("Sheet3").Delete&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Name = "Data"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; oXL.ActiveWorkBook.SaveAs strSaveFile &amp;amp; ActiveDocument.Evaluate("date(Now(), 'DD-MM-YYYY hh:mm:ss')") &amp;amp; ".xlsx"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;set oSH = Nothing&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;set oXL=Nothing&lt;/P&gt;
&lt;P&gt;end sub&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already enabled 'Allow system access' and 'System Access' along with Allow Macro Override from Document Settings, but this still happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/178253"&gt;tamilarasu&lt;/A&gt;‌ Kindly help me out here. I'm attching my app to the post. You can find the macro button in the tab titled 'Tables'. Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 08:43:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48936#M8104</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T08:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48937#M8105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When that happens, it means the macro stopped before completing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the SaveAs method does not work, it could be among others because the path is wrong, the evaluation does not return a valid value for a file (like a "/" character) or lack for permissions for the path specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EDIT&lt;/STRONG&gt;: at a first glance, indeed, the ":" character returned by the Evaluate of the date is not allowed by Windows as part of a file name or folder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 08:51:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48937#M8105</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-05-03T08:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48938#M8106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;the problem is the filename. it is invalid for Windows.&lt;/P&gt;&lt;P&gt;try with another name (i.e try _ instead of - , and avoid : )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 08:57:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48938#M8106</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-05-03T08:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48939#M8107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry&lt;/P&gt;&lt;P&gt;the name you use to save the xl file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 08:58:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48939#M8107</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-05-03T08:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48940#M8108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Olivier, I have tried replacing the filename part with 'Book1' instead of the date part. But the edit dialog box still keeps popping up. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48940#M8108</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T09:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48941#M8109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is that part :&lt;/P&gt;&lt;P&gt;ActiveDocument.Evaluate("date(Now(), 'DD-MM-YYYY ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can't use : for the name of the file&lt;/P&gt;&lt;P&gt;try something else&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48941#M8109</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-05-03T09:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48942#M8110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Olivier I understood that and replaced "&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;date(Now(), 'DD-MM-YYYY hh:mm:ss')" with "Book1".&amp;nbsp; &lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;But&amp;nbsp; the macro still keeps popping up an edit module box.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48942#M8110</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T09:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48943#M8111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as i'm using a french version of excel, I have to change those 2 lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;oXL.Sheets("Feuil2").Delete&amp;nbsp; &lt;BR /&gt; oXL.Sheets("Feuil3" ).Delete&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when i execute the macro, creates a file test_.xls&lt;/P&gt;&lt;P&gt;if the file already exist, you have a popup on excel&amp;nbsp; to overwrite the file&lt;/P&gt;&lt;P&gt;and excel doesn't close but there is no error&lt;/P&gt;&lt;P&gt;are you sure the directory c:\temp exist and you are allowed to save documents in this directory ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48943#M8111</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-05-03T09:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48944#M8112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even when I changed the directory path to 'C:\Users\XYZ\Documents' I get the same error. And I'm pretty sure that this directory exists and I am allowed to save documents in this directory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:31:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48944#M8112</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T09:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48945#M8113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;verify there's no other excel opened on your computer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48945#M8113</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-05-03T09:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48946#M8114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replacing the path and removing the colons from the evaluate works for me (Excel 2010): exports the workbook and saves it with the date. No module popup. Verify as mentioned the paths and permissions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:38:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48946#M8114</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-05-03T09:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48947#M8115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like something is wrong with my folder permissions. I have done as you both suggested but my excel file is not getting saved, is opening as a temp file titled 'Book1' and the popup keeps coming up. I have checked the folder permissions and I have full control for the folder too. Really weird. Thanks for the efforts &lt;A href="https://community.qlik.com/qlik-users/17633"&gt;mbaeyens&lt;/A&gt;‌ and &lt;A href="https://community.qlik.com/qlik-users/31575"&gt;olivierrobin&lt;/A&gt;‌. Guess I'll have to make do with no macros &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 09:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48947#M8115</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T09:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48948#M8116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phalgun,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Oliver and Miguel has already pointed out the issues. Below attached file is working for me. Make sure you change the below path and allow "System access" in module security. If you still have any issues let us know.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;IMG __jive_id="201357" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/201357_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:01:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48948#M8116</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-05-03T10:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48949#M8117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.qlik.com/qlik-users/178253"&gt;tamilarasu&lt;/A&gt;‌ for the original macro as well as the help on this question! Really really valuable macro that you have there. I'm sure it has helped a lot of people till now. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48949#M8117</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T10:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48950#M8118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha ha. I'm glad you liked it &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. That was posted couple of years ago. If you want to do some formatting you can find the code by googling. If you need any help feel free to tag me. I will try my level best to help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, is it working for you now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:19:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48950#M8118</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-05-03T10:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48951#M8119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. It's weirdly working now that I'm saving the files to desktop. Guess my permissions are different from what I see for the folders I was trying to save in earlier. Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:21:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48951#M8119</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T10:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48952#M8120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, Phalgun. Have a fantastic day!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:27:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48952#M8120</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-05-03T10:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: 'Edit Module' popping up upon Macro Execution</title>
      <link>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48953#M8121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You too my friend!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2018 10:28:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Edit-Module-popping-up-upon-Macro-Execution/m-p/48953#M8121</guid>
      <dc:creator>mrthomasshelby</dc:creator>
      <dc:date>2018-05-03T10:28:44Z</dc:date>
    </item>
  </channel>
</rss>

