Hiya Qwals,
This is a modified version of what I use to duplicate a sheet a daily basis.
Sub Copy_SheetData_Test()
Dim NewSheetName As String
Dim Wsc As Long
Wsc = ActiveWorkbook.Worksheets.Count 'This code counts the number of sheets in your workbook
'It only counts current sheets so it automatically allows for
'deleted sheets
NewSheetName = "Test2"
Sheets("Test Pivot").Copy After:=Sheets(Wsc)
Sheets("Test Pivot (2)").Name = NewSheetName
End Sub
I use this code below to name the sheet with a weekday (just to give you some ideas if you need something that will give you a new sheet per day
If Weekday(Date) = 2 Then 'day 2 is Monday – because we do not report on the Weekend
' we want the last date to be the Friday previous
NewSheetName = Format(Date - 3, "dd.mm.yy") 'This gives the previous Friday as the sheet name
Else: NewSheetName = Format(Date - 1, "dd.mm.yy") 'This makes the sheet name the previous day
End If
I trust this helps
Iain
Bookmarks