<?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 Parse failed. Functionality was lost error when creating a cyclic group in a Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288999#M107392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has been identified as a bug by Qliktech when we use a macro to create the Cyclic Groups.&amp;nbsp; Not sure when they will target to fix it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 20:24:06 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-01-12T20:24:06Z</dc:date>
    <item>
      <title>Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288993#M107386</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;I am receiving an error 'Macro parse failed.&amp;nbsp; Functionality was lost' when a macro is executed to create a cyclic group.&amp;nbsp; This is only happening when using the Access Point.&amp;nbsp; The desktop client works fine.&amp;nbsp; Below is the Macro code.&amp;nbsp; Does anybody know why this may be happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub mSetDatesCyclicGroup&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SET x = ActiveDocument.Variables("vDateConditon")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SET y = ActiveDocument.Variables("vMonthEndDisplay")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If x.GetContent.String = "1" Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If y.GetContent.String = "0" THEN&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; ActiveDocument.RemoveGroup "Dates"&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; set gr=ActiveDocument.CreateGroup("Dates")&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; gr.AddField "MonthEnd"&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; gr.AddField "WeekEnding"&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; gr.AddField "Date"&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; set gp = ActiveDocument.GetGroup("Dates").GetProperties&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; gp.IsCyclic = true&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; ActiveDocument.GetGroup("Dates").SetProperties gp&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; ActiveDocument.GetApplication.Refresh&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; y.SetContent "1",true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If y.GetContent.String = "1" THEN&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; ActiveDocument.RemoveGroup "Dates"&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; set gr=ActiveDocument.CreateGroup("Dates")&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; gr.AddField "MonthEnd"&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; set gp = ActiveDocument.GetGroup("Dates").GetProperties&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; gp.IsCyclic = true&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; ActiveDocument.GetGroup("Dates").SetProperties gp&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; ActiveDocument.GetApplication.Refresh&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; y.SetContent "0",true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end if&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;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2011 17:30:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288993#M107386</guid>
      <dc:creator />
      <dc:date>2011-11-01T17:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288994#M107387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try like this&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/8401_Capture.PNG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you need to check the 3rd option. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 13:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288994#M107387</guid>
      <dc:creator />
      <dc:date>2011-11-03T13:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288995#M107388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravikumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not get this option to appear.&amp;nbsp; Do you know how I can reset the IE settings for this box to appear?&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;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 13:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288995#M107388</guid>
      <dc:creator />
      <dc:date>2011-11-03T13:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288996#M107389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no need to change the IE settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This window will appear when your file is opened (because it may had macros).It will asks by providing the window for which macros you want to allow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look your edit module to be like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image" src="https://community.qlik.com/legacyfs/online/8406_Capture1.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 14:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288996#M107389</guid>
      <dc:creator />
      <dc:date>2011-11-03T14:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288997#M107390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is already set.&amp;nbsp; I am actually trying to execute these macros on a Test Server which now has a Test server license.&amp;nbsp; Are Test servers allowed to execute macros?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 14:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288997#M107390</guid>
      <dc:creator />
      <dc:date>2011-11-03T14:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288998#M107391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, a test server can run Macros. The problem is likely that the option to allow any macro to run (as mentioned above) was not selected. To correct this:&lt;/P&gt;&lt;P&gt;1. Open your QVW file via Internet Explorer&lt;/P&gt;&lt;P&gt;2. Type Ctrl + Shift + M&lt;/P&gt;&lt;P&gt;3. Choose the option "Give System Access to Module Script" and click "OK"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="9767" alt="Screen Shot 2011-12-20 at 2.44.36 PM.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/9767_Screen+Shot+2011-12-20+at+2.44.36+PM.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 19:47:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288998#M107391</guid>
      <dc:creator>jcampbell</dc:creator>
      <dc:date>2011-12-20T19:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288999#M107392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has been identified as a bug by Qliktech when we use a macro to create the Cyclic Groups.&amp;nbsp; Not sure when they will target to fix it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 20:24:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/288999#M107392</guid>
      <dc:creator />
      <dc:date>2012-01-12T20:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289000#M107393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has the issue been fixed? As I am getting the following error.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="39467" class="jive-image" alt="PPT Error.png" src="/legacyfs/online/39467_PPT Error.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Apr 2013 11:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289000#M107393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-04-22T11:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289001#M107394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure and did not look into this any further after it was identified as a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 15:54:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289001#M107394</guid>
      <dc:creator />
      <dc:date>2013-04-24T15:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289002#M107395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure and did not look into this any further after it was identified as a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 15:54:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289002#M107395</guid>
      <dc:creator />
      <dc:date>2013-04-24T15:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289003#M107396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure and did not look into this any further after it was identified as a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 15:55:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289003#M107396</guid>
      <dc:creator />
      <dc:date>2013-04-24T15:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289004#M107397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure and did not look into this any further after it was identified as a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 16:03:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289004#M107397</guid>
      <dc:creator />
      <dc:date>2013-04-24T16:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289005#M107398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure and did not look into this any further after it was identified as a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 16:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289005#M107398</guid>
      <dc:creator />
      <dc:date>2013-04-24T16:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Parse failed. Functionality was lost error when creating a cyclic group in a Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289006#M107399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only solution I found to my problem was as suggested by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/jcampbell" id="jive-2839621484969805551516" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;Joshua Campbell&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Press CTRL + SHIFT +M.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 13:14:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Parse-failed-Functionality-was-lost-error-when-creating-a/m-p/289006#M107399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-09T13:14:06Z</dc:date>
    </item>
  </channel>
</rss>

