Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have code to add a new sheet to a workbook but I want to name the tab
with today's date as the new sheet is created in the format DD-MMM Thanks Blue |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
one way:
Worksheets.Add.Name = Format(Date, "dd-mmm") In article , "Blue" wrote: I have code to add a new sheet to a workbook but I want to name the tab with today's date as the new sheet is created in the format DD-MMM Thanks Blue |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the quick replies
|
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this:
activeworkbook.sheets.add activesheet.name = format(Now, "dd-mmm") "Blue" wrote: I have code to add a new sheet to a workbook but I want to name the tab with today's date as the new sheet is created in the format DD-MMM Thanks Blue |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Concatenate including a date so that the date appears as a date | Excel Worksheet Functions | |||
date in Cell to change colors if the date is beyond today's date | Excel Discussion (Misc queries) | |||
Making a date go red, if date passes todays date. | Excel Worksheet Functions | |||
Report Date - Date Recv = Days Late, but how to rid completed date | Excel Worksheet Functions | |||
Date updates from worksheet to chart & changes date to a date series! Help!! | Charts and Charting in Excel |