PDA

View Full Version : Application.Run?



Bacchus
02-26-2019, 02:45 PM
Hello,

I have a workbook with the following macro example:


sub this_macro()

sheet1.select
range(A1:A20).select
Application.Run macro:="Some_Name"

end sub


I have no clue where the Some_Name macro being called by the Application.Run line is. It;s not visible in the VB Editor and I can't find anything with that name anywhere in the workbook. Any thoughts as to where it might be hiding? I think maybe its an XLL but I don't know how to check.

Appreciate any help, thanks.

Leith Ross
02-26-2019, 05:01 PM
Hello Bacchus,

My guess is you have to replace "Some_Name" with the name of macro you want to run.