Keep It Simple Stupid
New Member
- Joined
- May 24, 2007
- Messages
- 26
I have a tab that lists my desired sheet names in Column A, rows 1-29. (There are exactly 29 rows already created).
I've realized now that I need to run another macro within each of these new sheets (and only these new sheets) to insert some formulas, etc. Where can I put the macro information so it works on every sheet?
HTML:
Dim i As Long
For i = 1 To ActiveWorkbook.Sheets.Count
On Error Resume Next
ActiveWorkbook.Sheets(i).Name = ActiveSheet.Cells(i, "A").Text
Next i
I've realized now that I need to run another macro within each of these new sheets (and only these new sheets) to insert some formulas, etc. Where can I put the macro information so it works on every sheet?