<?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: Which Action start a Button in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53852#M1249120</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 reason you can't just add additional actions on the 1st button so it performs the actions of the 2nd button as well?&lt;/P&gt;&lt;P&gt;Regardless if you still wish to press the 2nd button with the 1st. The action to select on button 1 is Action Type: "External" and Action: "Run Macro". As per the above macro code just specify "PressButtonUmsatz" as the Macro name to execute with the button. The macro code should also be present in your qvw's "Edit Module" section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Apr 2018 13:04:37 GMT</pubDate>
    <dc:creator>splitcore</dc:creator>
    <dc:date>2018-04-18T13:04:37Z</dc:date>
    <item>
      <title>Which Action start a Button</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53851#M1249117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 12pt; font-family: Times New Roman;"&gt;Hello everybody,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="margin: 0px; color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-size: 12pt; font-family: Times New Roman;"&gt;I'm looking for a way, which I can with an action press a button, so that I pressing the first button and the second is activated as well. I want not to press the secound as well, it sould be done with a Action directly after the first one. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: black;"&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Times New Roman; font-size: 12pt;"&gt; I searched for action type selection but found nothing to select a button, or what type do I have to search for it?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="margin: 0px; color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="margin: 0px; color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you &lt;A href="https://community.qlik.com/qlik-users/6142" target="_blank"&gt;&lt;/A&gt; for your idea:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="margin: 0 0 13px;"&gt;&lt;SPAN lang="EN-GB" style="color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 9pt;"&gt;Simulating a button press can be done only with a macro.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0 0 13px;"&gt;&lt;SPAN lang="EN-GB" style="color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 9pt;"&gt;rem ** press button BU01 **&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0 0 13px;"&gt;&lt;SPAN lang="EN-GB" style="color: #3d3d3d; font-family: 'Helvetica','sans-serif'; font-size: 9pt;"&gt;ActiveDocument.GetSheetObject("BU01").Press&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;and &lt;A href="https://community.qlik.com/qlik-users/61824" target="_blank"&gt;marcowedel&lt;/A&gt; it is because I have to check which Button is aktive, and that should be pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have it, with the following it working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15240419083193139 jive_text_macro" jivemacro_uid="_15240419083193139" modifiedtitle="true"&gt;
&lt;P&gt;sub PressButtonUmsatz&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set wert = ActiveDocument.GetVariable("vWert_Menge")&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if wert.GetContent.String = "Menge" then&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.GetSheetObject("BU25").Press &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetSheetObject("BU03").Press&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;
&lt;P&gt;end Sub&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53851#M1249117</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Which Action start a Button</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53852#M1249120</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 reason you can't just add additional actions on the 1st button so it performs the actions of the 2nd button as well?&lt;/P&gt;&lt;P&gt;Regardless if you still wish to press the 2nd button with the 1st. The action to select on button 1 is Action Type: "External" and Action: "Run Macro". As per the above macro code just specify "PressButtonUmsatz" as the Macro name to execute with the button. The macro code should also be present in your qvw's "Edit Module" section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2018 13:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53852#M1249120</guid>
      <dc:creator>splitcore</dc:creator>
      <dc:date>2018-04-18T13:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Which Action start a Button</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53853#M1249124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason is that after the 1st button I have to check wich 2nd button have to be e, so maybe the BU25 or BU03, therefore I can't do the Actions from the 2nd one to the 1st one. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2018 05:05:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53853#M1249124</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-04-19T05:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Which Action start a Button</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53854#M1249128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest method (and also one that doesn't get you into trouble when running a macro document on a server) is to define two buttons with the same action list from the original button1 but different additional action lists from the possible active buttons, and display &lt;EM&gt;only one of them&lt;/EM&gt; at a time depending on the value of variable vWert_Menge. You can use a Properties-&amp;gt;Layout-&amp;gt;Conditional Show expression to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMHO you shouldn't make it too complex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2018 08:25:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53854#M1249128</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-04-19T08:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Which Action start a Button</title>
      <link>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53855#M1249130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for that idea!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes this I know already, because that Methode I use already for the second buttons. &lt;BR /&gt;In this dokument allready macros running, so that sould be not a Problem if there are one more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2018 09:10:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Which-Action-start-a-Button/m-p/53855#M1249130</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-04-19T09:10:12Z</dc:date>
    </item>
  </channel>
</rss>

