Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Get all sheets names in one sheet

1.I have 50 Sheets naming with employee names. Is there any option to get all
Sheet names in one sheet.
2.And can i give link between them, means if i change the name in the sheet,
can it be changed in the sheet name also.

Kindly help me in this?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
Default Get all sheets names in one sheet

Hi,
you can get it with a macro

'list of sheet names starting at A1 on new sheet
Sub Sheet_Names()
Dim ws As Worksheet
With Worksheets.Add
.Name = "Sheet Names"
.Move befo=Worksheets(1)
End With
Sheets("Sheet Names").Activate
Range("a1").Activate
For Each ws In Worksheets
If ws.Name < "Sheet Names" Then
ActiveCell.Formula = ws.Name
ActiveCell.Offset(1, 0).Select
End If
Next

End Sub



"Need Macro::Consolidating 500 sheets in" wrote:

1.I have 50 Sheets naming with employee names. Is there any option to get all
Sheet names in one sheet.
2.And can i give link between them, means if i change the name in the sheet,
can it be changed in the sheet name also.

Kindly help me in this?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cell names = sheet names Vince Excel Worksheet Functions 9 February 8th 08 03:59 PM
totals sheet- need summary of column of names between sheets babs Excel Discussion (Misc queries) 6 February 6th 06 09:35 PM
how do i set up a list of names on a sheet frm various sheets in e mcvities_69 Excel Discussion (Misc queries) 1 January 27th 06 02:51 AM
reference to sheets without using sheet names Wes Excel Worksheet Functions 13 September 3rd 05 08:15 PM
how do i get the names of the sheets Reny J Joseph Thuthikattu Excel Worksheet Functions 1 December 11th 04 09:37 AM


All times are GMT +1. The time now is 12:54 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"