VBA Excel Autoclicker

  • Thread starter Thread starter Legacy 185509
  • Start date Start date
L

Legacy 185509

Guest
Hi
This is my last choice I do not have other choice, so I hope this will work
is there way to do auto clicking in excel, I have one button VBA/Marco that will search for certain text and after finding that text it will automatically open a box on right side of excel and on that box I or user needs to click ok/apply for it to fetch/generate data, is there a way for auto clicking using X & Y coordinates on screen to click those button so I do not have to for over 200 cells to that is 400 click
please help me or suggest me better way to do it
thank you
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
If this is an Excel dialogue box then you can choose to turn them off during the macro execution.

Code:
Application.DisplayAlerts = False

'.....Your code

Application.DisplayAlerts = True
 
Upvote 0
see the problem is macro won't record on the dialogue box, I need it to do that, I need macro to record those clicks on the box, check out the picture I posted it explain what i am trying to show

image removed, sensitive information
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,224,591
Messages
6,179,767
Members
452,940
Latest member
rootytrip

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top