How to apply macros to entire workbook
Post your code.
A macro usually in placed into a General Module.
Event code will be placed in a worksheet or Thisworkbook module.
Do you mean you want a macro like this which works on all sheets in the workbook
when you run it once?
Sub Path_All_Sheets()
Set wkbktodo = ActiveWorkbook
For Each ws In wkbktodo.Worksheets
ws.PageSetup.RightFooter = ActiveWorkbook.FullName & " " & Chr(13) _
& Application.UserName & " " & Date
Next
End Sub
Gord Dibben MS Excel MVP
On Tue, 15 Jan 2008 20:03:00 -0800, Sherry
wrote:
I would like to know how to apply a macro to an entire workbook. I created a
macro within a worksheet. I would like to apply it to every sheet without
having to go each sheet and run the macro. Is there an easy way of doing
this? I am not a programmer...
Thanks!
|