Renaming A Tab

M

mark_richards

Hi All

Does anybody know if it is possible to rename tab as a cell
refference.

i.e. "Sheet1" becomes =A1

Does that mean anything???

Thanks

Mark
 
O

O&O

Is there any macro which can do same for selected sheets & selected
cells/range
(i.e not single cell & sheet)
Thxs
 
B

Bob Phillips

Something like?

For Each sh In Activeworkbook.Worksheets
If sh.Range("A1").Value <> "" Then
sh.Name = Range("A1").Value
End If
Next sh

--

HTH

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

Bob Phillips

Thank-you sir!

--

HTH

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