I have the following macro:
Sheets("3-13-11").Select
Sheets("3-13-11").Copy Before:=Sheets(1)
Sheets("3-13-11 (2)").Select
Sheets("3-13-11 (2)").Name = "3-20-11"
Rows("3:81").Select
Selection.EntireRow.Hidden = False
Range("B4:M81").Select
Selection.Replace What:="3-13-11", Replacement:="3-20-11", LookAt:=xlPart _
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:="$13", Replacement:="$14", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Every week I have to create a new sheet with the same formulas and links as the previous one. Right now I go into the code and change the info I need to manually. How would I do this with out having to change the macro every week????
Sheets("3-13-11").Select
Sheets("3-13-11").Copy Before:=Sheets(1)
Sheets("3-13-11 (2)").Select
Sheets("3-13-11 (2)").Name = "3-20-11"
Rows("3:81").Select
Selection.EntireRow.Hidden = False
Range("B4:M81").Select
Selection.Replace What:="3-13-11", Replacement:="3-20-11", LookAt:=xlPart _
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:="$13", Replacement:="$14", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Every week I have to create a new sheet with the same formulas and links as the previous one. Right now I go into the code and change the info I need to manually. How would I do this with out having to change the macro every week????