Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Worksheet Functions / October 2006

Tip: Looking for answers? Try searching our database.

WORKSHEET NAME = CELL REFERENCE

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
tim m - 16 Oct 2006 20:04 GMT
Is there a way to make a worksheet name = cell?
Bob Phillips - 16 Oct 2006 20:20 GMT
Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1"     '<== change to suit

   On Error GoTo ws_exit
   Application.EnableEvents = False

   If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
       With Target
           Me.Name = .Value
       End With
   End If

ws_exit:
   Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

> Is there a way to make a worksheet name = cell?
tim m - 20 Oct 2006 14:46 GMT
Let me describe what I need to do. I have an existing workbook with
worksheets for each week of a calendar quarter with performance data. All of
the cells are protected except data entry cells and also sheets with graphs
to show the performance from the entered data. I would like to build a
template workbook that will name the worksheets based on a combined cell in
each of the work sheets that contains the date. this would allow me to set up
workbooks for each quarter of the year. Please help

> Private Sub Worksheet_Change(ByVal Target As Range)
> Const WS_RANGE As String = "H1"     '<== change to suit
[quoted text clipped - 25 lines]
>
> > Is there a way to make a worksheet name = cell?
tim m - 20 Oct 2006 14:29 GMT
> Is there a way to make a worksheet name = cell?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.