Hi,
I needed a Macro to open a workbook automatically in today's cell and I found a macro from CFO.com
Private Sub Workbook_Open()
Worksheets("Feb").Select
x = Day(Date)
Worksheets("Feb").Columns(2).Find(What:=x, LookIn:=xlValues).Activate
End Sub
The problem is my workbook is divided into 12 sheets for each month (Jan, Feb, Mar, etc...) and I would like the macro to apply to work across all sheets without having to change the code.
How would I do that ?
I'm no VBA expert and I tried a few combinations but it causes me grief.
Thanks
Gaetan
Bookmarks