Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am creating a large workbook that requires I break down each week into a
seperate worksheet. Is there anyway I can set an auto naming feature to label the worksheets for me or must I do it manually, one sheet at a time? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a short macro that names sheets based on a cell value. Using formulas,
you could adast this to suit: Sub NameSheets() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets ws.Name = ws.Range("A1").Value Next End Sub -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Melissa Blakley" wrote: I am creating a large workbook that requires I break down each week into a seperate worksheet. Is there anyway I can set an auto naming feature to label the worksheets for me or must I do it manually, one sheet at a time? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Do you have existing sheets that need re-naming?
How many and what do you want for labels? This macro will rename to Week1, Week2 etc. Sub RenameTabs() For I = 1 To Sheets.Count Sheets(I).Name = "Week" & I Next End Sub If you don't have the sheets do you want to copy one template sheet many times and name each copy? Post back with some details. Gord Dibben MS Excel MVP On Fri, 23 Oct 2009 11:25:01 -0700, Melissa Blakley <Melissa wrote: I am creating a large workbook that requires I break down each week into a seperate worksheet. Is there anyway I can set an auto naming feature to label the worksheets for me or must I do it manually, one sheet at a time? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
using the Excel generic worksheet names instead of user-given names in code | Excel Discussion (Misc queries) | |||
Linking Tab/worksheet names to a worksheet cell | Excel Discussion (Misc queries) | |||
MAKE A LIST OF NAMES FROM REPEATED NAMES IN THE SAME WORKSHEET | Excel Discussion (Misc queries) | |||
Trying to list tab/worksheet names in a summary worksheet | Excel Discussion (Misc queries) | |||
How to link Excel worksheet tab names to dates in each worksheet? | Excel Worksheet Functions |