![]() |
Naming Worksheet
I am wanting to automatically name a range of worksheets based on the values
contained in a range of cells located in another worksheet in the same workbook. Can this be done and how would I go about it -- Denis |
Denis,
Try something like the following. It will change the name of the first sheet in the workbook to the value in A1 of Sheet3. Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Sh.Name = "Sheet3" And Target.Address = "$A$1" Then Worksheets(1).Name = Worksheets("Sheet3").Range("A1").Text End If End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Denis" wrote in message ... I am wanting to automatically name a range of worksheets based on the values contained in a range of cells located in another worksheet in the same workbook. Can this be done and how would I go about it -- Denis |
Denis
Sub NameWS() 'name sheets from data list in A1:A10 on first sheet For i = 2 To 10 Sheets(i).Name = Sheets(1).Cells(i, 1).Value Next End Sub Gord Dibben Excel MVP On Tue, 13 Sep 2005 06:35:06 -0700, "Denis" wrote: I am wanting to automatically name a range of worksheets based on the values contained in a range of cells located in another worksheet in the same workbook. Can this be done and how would I go about it |
All times are GMT +1. The time now is 09:58 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com