In Excel is there a way to read the name of the sheets tab and di.

N

Neil

I would like to display the name of the sheet (the tab name) in a cell - or
vise versa. So the user could change it just once.
 
G

Gord Dibben

Which takes care of putting the sheet name in a cell.

For the vice versa.........

Sub SheetName22()
ActiveSheet.Name = Range("c1")
End Sub

Gord Dibben Excel MVP
 
Top