ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Tab Value (https://www.excelbanter.com/excel-discussion-misc-queries/14345-tab-value.html)

S_Steele1812

Tab Value
 
Is there a way to make a tab assume the same value as a cell on that sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.

Bob Phillips

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$G$1" Then
Me.Name = Target.Value
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

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
Is there a way to make a tab assume the same value as a cell on that

sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.




S_Steele1812

Bob,


"Bob Phillips" wrote:

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$G$1" Then
Me.Name = Target.Value
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

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
Is there a way to make a tab assume the same value as a cell on that

sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.





S_Steele1812

Bob,
Is there something that I have to do to execute this code. I printed
it into the sheets module and nothing happened. I confess to being a total
NooB at this. I have written macros before but that is about it.

Thanks
Sean Steele

"Bob Phillips" wrote:

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$G$1" Then
Me.Name = Target.Value
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

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
Is there a way to make a tab assume the same value as a cell on that

sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.





Bob Phillips

Sean,

If you put it in the correct place, then just change the value of G1 (even
to what it already contains, just force the change event), and you will see
the tab name change.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
Bob,
Is there something that I have to do to execute this code. I

printed
it into the sheets module and nothing happened. I confess to being a total
NooB at this. I have written macros before but that is about it.

Thanks
Sean Steele

"Bob Phillips" wrote:

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$G$1" Then
Me.Name = Target.Value
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

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
Is there a way to make a tab assume the same value as a cell on that

sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the

tab
value update automaticaly when the Cell value is changed.







S_Steele1812

I got this from another post where some one else asked a similar question.
This works exactly as I wanted. Thank you to everyone that helped.

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo ExitMe
If Not Intersect(Target, Range("G1")) Is Nothing Then
Me.Name = Range("G1").Value
End If
ExitMe:
Application.EnableEvents = True
End Sub

"S_Steele1812" wrote:

Is there a way to make a tab assume the same value as a cell on that sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.


Bob Phillips

Apart from a more complex way of deducing correct cell, that is the same as
I gave you.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"S_Steele1812" wrote in message
...
I got this from another post where some one else asked a similar question.
This works exactly as I wanted. Thank you to everyone that helped.

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo ExitMe
If Not Intersect(Target, Range("G1")) Is Nothing Then
Me.Name = Range("G1").Value
End If
ExitMe:
Application.EnableEvents = True
End Sub

"S_Steele1812" wrote:

Is there a way to make a tab assume the same value as a cell on that

sheet?
ie. value of cell G1 is Feeler have tab value be Feeler and have the tab
value update automaticaly when the Cell value is changed.





All times are GMT +1. The time now is 07:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com