WORKSHEET NAME = CELL REFERENCE

B

Bob Phillips

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)
 
T

tim m

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
 
Top