PDA

View Full Version : Solved: Running two macros on opening



jamieCR9
03-28-2010, 08:01 AM
I have two macros that I want to run when opening my spreadsheet. The following code is run:

Sub workbook_open()

Run "MyMacro" And "RemoveScrollBars"

End Sub
Both macros are properly functioning on their own, but won't work together with this code. I'm not sure of the correct method to run them simultaneously. Thanks for any help that can be provided.

mdmackillop
03-28-2010, 08:30 AM
Sub workbook_open()

Call MyMacro
Call RemoveScrollBars

End Sub