Hi,
I have created a master sheet that I want to replicate. I have a range say A1:A15 with names (test values) of Aug 11, Sep 11 etc.
Instead of creating forms for the next few years manually. I want to create them copying the master and then rename based on the cell value, then cycle through.
I have some starting code but would really appreciate some guidance:
![]()
Sub Macro1() 'select your template/master sheet Sheets("Master").Select 'copy the sheet and move the new sheet to the end Sheets("Master").Copy After:=Sheets(Sheets.Count) 'select the new sheet and rename it with today's date Sheets("Master (2)").Select Sheets("Master (2)").Name = Format(Now(), "mmm-yy") 'go back to the template/master Sheets("Master").Select End Sub
This code just uses the current date. I would like to use a cell range.
Thank you,
JP
Bookmarks