View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John H. John H. is offline
external usenet poster
 
Posts: 3
Default Is there a way to use a field link to rename a worksheet ?

wow....thanks....it works !
i'm not familiar with Visual Basic....can you suggest a good book for me to
learn the language and code info....would love to learn it and make more use
of it myself.

thanks,
john h.

"Don Guillett" wrote:

Read it again, slowly. If you do it and change cell h1 sheet6 name will
change. Try it.

--
Don Guillett
SalesAid Software

"John H." wrote in message
...
well.....that completely lost me ?

"Don Guillett" wrote:

One way is to put this in the sheet module of the sheet where the cell to
be
changed is located.
right click sheet tabview codecopy/paste thismodify to suitsave
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address < "$H$1" Then Exit Sub
Sheet6.Name = Target
End Sub

--
Don Guillett
SalesAid Software

"John H." <John wrote in message
...
I'm trying to find a way to make a worksheet name change according to a
field
name . It would be nice to make the worksheet rename according to what
is
typed in a specific field in a different worksheet. Anybody have any
idea
if
this can be done ?