J juanpablo Dec 10, 2007 #1 I need to create a macro that can insert sheets from 01DEC to 31DEC Each Sheet should be named with each day. Thanks JPG
I need to create a macro that can insert sheets from 01DEC to 31DEC Each Sheet should be named with each day. Thanks JPG
E excelent Dec 10, 2007 #2 Sub addSheet() On Error Resume Next For t = 31 To 1 Step -1 Sheets.Add.Name = Format(t, "00") & "DEC" Next End Sub "juanpablo" skrev:
Sub addSheet() On Error Resume Next For t = 31 To 1 Step -1 Sheets.Add.Name = Format(t, "00") & "DEC" Next End Sub "juanpablo" skrev:
S supoch14 Aug 29, 2008 #3 juanpablo said: I need to create a macro that can insert sheets from 01DEC to 31DEC Each Sheet should be named with each day. Thanks JPG Click to expand...
juanpablo said: I need to create a macro that can insert sheets from 01DEC to 31DEC Each Sheet should be named with each day. Thanks JPG Click to expand...
S supoch14 Aug 29, 2008 #4 excelent said: Sub addSheet() On Error Resume Next For t = 31 To 1 Step -1 Sheets.Add.Name = Format(t, "00") & "DEC" Next End Sub "juanpablo" skrev: Click to expand...
excelent said: Sub addSheet() On Error Resume Next For t = 31 To 1 Step -1 Sheets.Add.Name = Format(t, "00") & "DEC" Next End Sub "juanpablo" skrev: Click to expand...
R Roger Govier Aug 29, 2008 #5 Hi Take a look at the sample file I put on ExcelUserGroup.org http://excelusergroup.org/media/p/236.aspx If you want the Month name as well as the day on each sheet it will be easy to amend.
Hi Take a look at the sample file I put on ExcelUserGroup.org http://excelusergroup.org/media/p/236.aspx If you want the Month name as well as the day on each sheet it will be easy to amend.