B BZ Jun 2, 2008 #1 Is there anyway to get Sheet 1's name to pull whatever is in cell C3 and change the "Sheet 1" title to that cells content?
Is there anyway to get Sheet 1's name to pull whatever is in cell C3 and change the "Sheet 1" title to that cells content?
G Gary''s Student Jun 2, 2008 #2 Run this small macro: Sub nameit() For Each ws In Worksheets ws.Name = ws.Range("C3").Value Next End Sub
Run this small macro: Sub nameit() For Each ws In Worksheets ws.Name = ws.Range("C3").Value Next End Sub