Excel VBA to update Sheet Name

sachin20us

New Member
Joined
May 30, 2017
Messages
6
All,

Hope all is well.
Cell A2 in Data 06/09/2017 has the date 06/09/2017. This date updates according to the current date or on adhoc basis.
Tab Data 06/09/2017 has the data in a table.
Tab Trend 06/09/2017 has a pivot table that updated according to the data 06/09/2017
Tomorrow i have to create two tabs with Data 06/10/2017 and Trend 06/10/2017 as sheet names. The dates are based on date value in cell A2

I have the macro below that dynamically updates my existing pivot table automatically based on the input i give. How to i make the below macro so that instead of pivottables sheet name the macro selects and automatically updates the Trend 06/09/2017 worksheet.

Data tab has the worksheet named data
Pivot table is in the pivottables sheet
In the data tab. i Click on view code and change the macro to Selectionchange....

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheets("Pivot table").PivotTables("PivotTable1").RefreshTable
End Sub
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Code:
Private Sub Worksheet_Activate()
ActiveSheet.Name = "Trend" & Formst(Date, "mm/dd/yyyy")
End Sub

this would change name of the Trend sheet daily as you activate it. I assume you will have somehow preserved the previous days sheet.
 
Upvote 0
Interesting.. How will i incorporate it in my existing code?
I want the data sheets name to change as well based on the value in a2.
will this update the pivot tables upon selection?
 
Upvote 0
Interesting.. How will i incorporate it in my existing code?
I want the data sheets name to change as well based on the value in a2.
will this update the pivot tables upon selection?

No this code does not update the Pivot Table, it is a separate code utilizing a different event for a trigger to run. This code must reside in the worksheet code module of the sheet which name you want to change. To use it in the Data sheet, you would have a separate code and change the execution line to
Code:
ActiveSheet.Name = "Data" & Format(Date, "mm/dd/yyyy")
If you want it to rely on the date in cell A2 of the sheet then
Code:
ActiveSheet.Name = "Data" & Format(Range("A2").Value, "mm/dd/yyyy")
 
Upvote 0

Forum statistics

Threads
1,215,467
Messages
6,124,984
Members
449,201
Latest member
Lunzwe73

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