<?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 Show message when macro is running in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134450#M916359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to show message like "Processing" in QlikView when macro is running ..so that I could see the progress of my macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somebody help me code this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>ashishpalkar</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134450#M916359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to show message like "Processing" in QlikView when macro is running ..so that I could see the progress of my macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somebody help me code this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134450#M916359</guid>
      <dc:creator>ashishpalkar</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134451#M916362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Ashish&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;You can create a text box with message as "Processing" (or you can add an image) and create a new variable and name it as "vShow". Now, goto layout property of the text box and type the variable name in conditional show box. We can change the variable value (0 and 1) in macro.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Sub Test&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ActiveDocument.variables("vShow").SetContent "1", True&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;''Your macro code here&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;ActiveDocument.Variables("vShow").SetContent "0", True&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 29px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have not tested this method but guess it should work.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2016 19:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134451#M916362</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-05-12T19:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134452#M916364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to the suggestion from &lt;A href="https://community.qlik.com/qlik-users/178253"&gt;tamilarasu&lt;/A&gt; you could also count up such a variable and use this as expression in a barchart with a fix scale from 1 to 100 to emulate a progress-bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 07:02:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134452#M916364</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-05-13T07:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134453#M916367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will this work since macros (as far as I know) runs single threaded?&lt;/P&gt;&lt;P&gt;Haven't tried it though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 07:43:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134453#M916367</guid>
      <dc:creator>jerrysvensson</dc:creator>
      <dc:date>2016-05-13T07:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134454#M916370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish, you can try with a message box:&lt;/P&gt;&lt;P&gt;write the code at script i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MsgBox("The Macro has finshed")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ Info:&lt;/P&gt;&lt;P&gt;MsgBox ('Message 2', 'msgbox', 'OKCANCEL', 'ICONASTERISK')&lt;SPAN class="Apple-converted-space"&gt; ]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Apple-converted-space"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Apple-converted-space"&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Apple-converted-space"&gt;Paolo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 08:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134454#M916370</guid>
      <dc:creator />
      <dc:date>2016-05-13T08:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Show message when macro is running</title>
      <link>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134455#M916371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The macro itself is single-threaded but not mandatory the result of this action, see here a quote from HIC from the post: &lt;A href="https://community.qlik.com/qlik-blogpost/3700"&gt;Macros are Bad&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Single-Threaded?&lt;/STRONG&gt; Macros are in their nature sequential – i.e. in a way single-threaded. But this is not the same as saying that all calculations started by macros are single-threaded. For instance, if a macro makes a selection that causes a chart to be calculated, both the logical inference and the chart calculation are multi-threaded. As they should be.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within the attachment is small example how it could work (yes it could be look nicer - but you could adjust the layout like you want).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 08:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-message-when-macro-is-running/m-p/1134455#M916371</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-05-13T08:35:25Z</dc:date>
    </item>
  </channel>
</rss>

