Macro Running at Spreadsheet Start

M

MWhitehead

Hi, I wish to load a macro I have created when the spreadsheet firs
loads up. Is this possible? If so, how do I go about it?


I would like to thank you in advance for any help
 
M

mangesh_yadav

use the following sub in one of your modules

Sub Auto_Open()

'Action to be done when the excel sheet starts
'enter your code here

end su
 
Top