Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hiii all..
How to rename all sheets in a exce at once automatically. i have 10 sheets in excel. Is there any option to rename all 10 work sheets at once. I am spending lot of time on renaming all sheets. plz help me Narendra |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Example of before/after desires
-- Don Guillett SalesAid Software "Narendra Boga" wrote in message ... hiii all.. How to rename all sheets in a exce at once automatically. i have 10 sheets in excel. Is there any option to rename all 10 work sheets at once. I am spending lot of time on renaming all sheets. plz help me Narendra |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can do this with a macro.
Rather than posting a generic macro, describe what you want the sheets re-named to an a tailored-to-your-needs macro could be posted. Gord Dibben MS Excel MVP On Sat, 2 Jun 2007 07:01:04 -0700, Narendra Boga wrote: hiii all.. How to rename all sheets in a exce at once automatically. i have 10 sheets in excel. Is there any option to rename all 10 work sheets at once. I am spending lot of time on renaming all sheets. plz help me Narendra |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
The direct answer to the question "Is there any option to rename all 10 work sheets at once." is no. But as others have suggested you can do it with a macro, the problem is how do you decide what the sheet names are. Suppose you enter the sheet names in cells A1:A10 of Sheet1. Sub NameSheets() Dim N As Variant N = Sheets(1).Range("A1:A10").Value For I = 1 To 10 Sheets(I).Name = N(I, 1) Next I End Sub Cheers, Shane Devenshire "Narendra Boga" wrote: hiii all.. How to rename all sheets in a exce at once automatically. i have 10 sheets in excel. Is there any option to rename all 10 work sheets at once. I am spending lot of time on renaming all sheets. plz help me Narendra |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanq very much shane... it works....
"ShaneDevenshire" wrote: Hi, The direct answer to the question "Is there any option to rename all 10 work sheets at once." is no. But as others have suggested you can do it with a macro, the problem is how do you decide what the sheet names are. Suppose you enter the sheet names in cells A1:A10 of Sheet1. Sub NameSheets() Dim N As Variant N = Sheets(1).Range("A1:A10").Value For I = 1 To 10 Sheets(I).Name = N(I, 1) Next I End Sub Cheers, Shane Devenshire "Narendra Boga" wrote: hiii all.. How to rename all sheets in a exce at once automatically. i have 10 sheets in excel. Is there any option to rename all 10 work sheets at once. I am spending lot of time on renaming all sheets. plz help me Narendra |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vb code for renaming a work sheet with a cell reference | Excel Discussion (Misc queries) | |||
Renaming sheets with the same name after copying into a new workbo | Excel Discussion (Misc queries) | |||
Counting dates in multiple work sheets and work books | Excel Discussion (Misc queries) | |||
Renaming multiple sheets | Excel Worksheet Functions | |||
I wish to save my Excell work in my work sheets | Excel Worksheet Functions |