RENAME SHEET WITH NEW DATE BASED ON EXISTING SHEETS

ravecake

New Member
Joined
Oct 26, 2022
Messages
13
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
Hi,

I have an existing workbook of sheets ordered in decreasing dates (by business day) as such: [ 20221221 ] [ 20221220 ] [ 20221216 ] [ 20221215 ].

With each new day I will paste a new sheet of data into that workbook as such: [ 20221222 ] [ 20221221 ] [ 20221220] [ 20221216 ] [ 20221215 ]

How can I write a script so that once I have pasted that sheet into the workbook (which is extracted from my external database as Sheet1) it is renamed to the date one business day after the previous sheet (i.e. the sheet to the right -> [ 20221221 ] in the above example)?

MANY THANKS!!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi,
place following code in the Thisworkbook Code Page & see if it will do what you want

VBA Code:
Private Sub Workbook_NewSheet(ByVal Sh As Object)
    Dim SheetName   As Variant
    Dim dDate       As Date
    SheetName = Val(Sheets(Sh.Index + 1).Name)
    If Len(SheetName) <> 8 Then Exit Sub
    dDate = DateSerial(Left(SheetName, 4), Mid(SheetName, 5, 2), (Right(SheetName, 2))) + 1
    Sh.Name = Format(dDate, "YYYYMMDD")
End Sub

Hope Helpful

Dave
 
Upvote 0
Hi,
place following code in the Thisworkbook Code Page & see if it will do what you want

VBA Code:
Private Sub Workbook_NewSheet(ByVal Sh As Object)
    Dim SheetName   As Variant
    Dim dDate       As Date
    SheetName = Val(Sheets(Sh.Index + 1).Name)
    If Len(SheetName) <> 8 Then Exit Sub
    dDate = DateSerial(Left(SheetName, 4), Mid(SheetName, 5, 2), (Right(SheetName, 2))) + 1
    Sh.Name = Format(dDate, "YYYYMMDD")
End Sub

Hope Helpful

Dave
Thanks for your quick response Dave.

I want to store this macro in my personal.XLSB, if I paste your code into a module and execute it just opens the macro dialog box and doesn't run the code.
 
Upvote 0
Thanks for your quick response Dave.

I want to store this macro in my personal.XLSB, if I paste your code into a module and execute it just opens the macro dialog box and doesn't run the code.

Need to place code where stated in the Thisworkbook code page - when you insert new sheet this event triggers the code.

Dave
 
Upvote 0
Hi Dave,

I need to keep the workbooks in question as .xlsx, and so have kept any macros to use in personal.xlsb.

I managed to find a separate solution via FormulaR1C1 functions as follows:


VBA Code:
Sub sheetvalue( )

    Range("AA2").Value = ActiveWorkbook.Worksheets(2).Name
    Range("AA3").Select
    ActiveCell.FormulaR1C1 = _
        "=DATE(LEFT(R[-1]C,4),MID(R[-1]C,5,2),RIGHT(R[-1]C,2))"
    Range("AA4").Select
    ActiveCell.FormulaR1C1 = "=WORKDAY(R[-1]C,1)"
    Range("AA4").Select
    Selection.NumberFormat = "YYYYMMDD"

With ActiveSheet
    .Name = Format(Range("AA4").Value, ("YYYYMMDD"))

End With

End Sub

This assumes that ActiveWorkbook.Worksheets(2) points to the most recently inserted previous-day's sheet.

Cells AA2/3/4 are just empty cells used for the purpose of extracting existing sheet names and applying the WORKDAY function.

Is there a way to clean this up or avoid using FormulaR1C1 in the interest of curiosity?

Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top