View Single Post
 
Old 03-05-2015, 05:49 PM
charlesdh charlesdh is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Apr 2014
Location: Mississippi
Posts: 382
charlesdh is on a distinguished road
Default

Hi,

You can have a macro run when you use a workbook open event.
As for books look on amazon. They have a great selection of books.


Code:
Private Sub Workbook_Open()
''' This code needs to be in the "Thisworkbook module

Run "MyMacro"''' this will call the code you want to run

End Sub
Reply With Quote