Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Button click using macro


Hi

I want to perform "Button click" using macro

How can I do this?

Regards

Avadhoot

1 Solution

Accepted Solutions
tresesco
MVP
MVP

try this:

ActiveDocument.GetSheetObject("Button01").Press

Replace Button01 with your button object name.

View solution in original post

6 Replies
vikasmahajan

PFA Some Sample.

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Not applicable
Author

create button

properties

action

Add

Select External

select run macro

gives the name of macro example- test

edit module

then write within this block

sub  test

-----

----

end sub



then click on check.

then ok

Not applicable
Author

I want Macro  in such way that after its execution "Button click" will happen..

I want to click on button through Macro.....

Not applicable
Author


Through Macro Code I want to "Click" a Btton

vikasmahajan

Through Macro Code I want to "Click" a Btton  means what you want to achieve ?


Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
tresesco
MVP
MVP

try this:

ActiveDocument.GetSheetObject("Button01").Press

Replace Button01 with your button object name.