![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
With workbook already open, would like to have a macro perform:
1) add new sheet 2) rename that new sheet with todays date. Step 1 easy, completed. Need guidance on step 2 Thanks ! |
| Ads |
|
#2
|
|||
|
|||
|
Paul, something like this,
Worksheets.Add.Name = Format(Date, "mmm dd yy") Paul B "Paul" > wrote in message ... > With workbook already open, would like to have a macro perform: > 1) add new sheet > 2) rename that new sheet with todays date. > > Step 1 easy, completed. > Need guidance on step 2 > > > Thanks ! |
|
#3
|
|||
|
|||
|
Indeed !! that works, a large Thanks !
"Paul B" wrote: > Paul, something like this, > > Worksheets.Add.Name = Format(Date, "mmm dd yy") > > Paul B > "Paul" > wrote in message > ... > > With workbook already open, would like to have a macro perform: > > 1) add new sheet > > 2) rename that new sheet with todays date. > > > > Step 1 easy, completed. > > Need guidance on step 2 > > > > > > Thanks ! > > > |
|
#4
|
|||
|
|||
|
I don't know if you are familiar with VB so,
Hit Alt and F11 to open the VB editor, Click 'Insert' > 'Module' In the empty screen cut and paste this into it:- Sub NewSheet() On Error GoTo Error Dim AddSheet Sheets.Add AddSheet = Format(Date, "dd mmm yy") ActiveSheet.Name = AddSheet Exit Sub Error: Application.DisplayAlerts = False ActiveSheet.Delete Application.DisplayAlerts = True MsgBox "A Sheet named " & AddSheet & " already exists." End Sub Exit the VB editor, Click 'Views' > 'Toolbars' > 'Forms' > 'Button' to put a cammand button on the sheet, Right click the Button, select 'Assign Macro', click 'NewSheet' Rename the Button and move it where you want it and there you go, Regards, Alan. "Paul" > wrote in message ... > With workbook already open, would like to have a macro perform: > 1) add new sheet > 2) rename that new sheet with todays date. > > Step 1 easy, completed. > Need guidance on step 2 > > > Thanks ! |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Move data to new sheet - rename sheet based on criteria ? | [email protected] | Excel Discussion (Misc queries) | 7 | May 16th 07 10:22 PM |
| Rename sheet with NOW date | Publius | Excel Worksheet Functions | 4 | January 12th 07 10:05 PM |
| Create a reference to a sheet that changes to todays date | Grd | Excel Worksheet Functions | 2 | August 14th 06 05:36 PM |
| VBA rename sheet. | paulrm906 | Excel Discussion (Misc queries) | 3 | March 12th 06 12:18 PM |
| Rename Sheet | Linda@VZ | Excel Discussion (Misc queries) | 1 | November 2nd 05 12:43 PM |