View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default How can I get each worksheet tab name to pull from cell C3?

Run this small macro:

Sub nameit()
For Each ws In Worksheets
ws.Name = ws.Range("C3").Value
Next
End Sub

--
Gary''s Student - gsnu200789


"BZ" wrote:

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?