Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Tab name = Referenced Cell


Hello,

I am running an excel report with many tabs.
What I would like to do is to have the TAB of a specific shee
reference a cell (lets say $A$1) for that specific sheet I am on.

For examble, tab 1 will reference cell $A$1 which is the name of
person.
Tab 2 will reference another name specific to the cell and tab it i
on.

At the end, each tab should have a different name per the cell/tab i
is referencing.

How would it do this? do I need to do this in VBA? if so, can you writ
the code out?
I am not VBA proficient...AT ALL...

Please help!!!

Thank

--
Maxwell-500
-----------------------------------------------------------------------
Maxwell-5000's Profile: http://www.excelforum.com/member.php...fo&userid=2605
View this thread: http://www.excelforum.com/showthread.php?threadid=39407

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Tab name = Referenced Cell


Maxwell,

This will do what you want. Put it into a standard module, run i
manualy.
You could change the macro to fire on change. (I think)

Sub RenameTabs()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Activate
ws.Name = Range("A1").Value
Next
End Sub

This help?
Dave
Maxwell-5000 Wrote:
Hello,

I am running an excel report with many tabs.
What I would like to do is to have the TAB of a specific shee
reference a cell (lets say $A$1) for that specific sheet I am on.

For examble, tab 1 will reference cell $A$1 which is the name of
person.
Tab 2 will reference another name specific to the cell and tab it i
on.

At the end, each tab should have a different name per the cell/tab i
is referencing.

How would it do this? do I need to do this in VBA? if so, can you writ
the code out?
I am not VBA proficient...AT ALL...

Please help!!!

Thank


--
Piranh
-----------------------------------------------------------------------
Piranha's Profile: http://www.excelforum.com/member.php...fo&userid=2043
View this thread: http://www.excelforum.com/showthread.php?threadid=39407

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
bold text of referenced cell show in formula cell zabcikranch Excel Worksheet Functions 1 February 2nd 10 07:42 PM
Return Results of a cell based on cell referenced in a cell Drew Excel Worksheet Functions 4 September 3rd 09 06:19 PM
Change Text Color in one cell based upon entry in referenced cell Tee Excel Discussion (Misc queries) 3 September 12th 08 10:07 PM
The absolute referenced cell does not move when source cell moves johnc Excel Worksheet Functions 2 May 8th 06 06:33 PM
How do I double click a cell and jump to cell's referenced cell JerryJuice Excel Discussion (Misc queries) 2 September 10th 05 10:24 PM


All times are GMT +1. The time now is 10:22 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"