#1   Report Post  
Posted to microsoft.public.excel.misc
Pedro AM
 
Posts: n/a
Default Tab naming

Hi all

I am trying to automate the process of naming a sheet with a given name.
In cell A3 I have invoice numbers and would like the sheet name to change to
this when I update this number. No other sheets are sourcing from this sheet.

Can this be done automatically?

Any help is much appreciated.

Regards
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Tab naming

'-----------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
'-----------------------------------------------------------------
Const WS_RANGE As String = "A3"

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 on the sheet tab, select
'the View Code option from the menu, and paste the code in.




--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Pedro AM" <Pedro wrote in message
...
Hi all

I am trying to automate the process of naming a sheet with a given name.
In cell A3 I have invoice numbers and would like the sheet name to change

to
this when I update this number. No other sheets are sourcing from this

sheet.

Can this be done automatically?

Any help is much appreciated.

Regards



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
How can I automate the naming of worksheet tabs? TJ Excel Discussion (Misc queries) 7 September 8th 05 12:01 AM
E2003 naming ranges correctly Estrelle71 Excel Discussion (Misc queries) 1 July 22nd 05 02:02 PM
Naming a Chart William Bartusek Excel Discussion (Misc queries) 2 March 16th 05 11:22 PM
Naming ranges? pmw5 Excel Discussion (Misc queries) 2 March 4th 05 06:57 PM
Naming Ranges Simon Shaw Excel Discussion (Misc queries) 1 February 15th 05 01:17 AM


All times are GMT +1. The time now is 04:20 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"