Thread: naming sheets
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default naming sheets

Something like:

Sub dateit()
ActiveSheet.Name = Format(Date, "dd_mm_yyyy")
End Sub


change the format to suit your needs
--
Gary''s Student - gsnu200749


"jhyatt" wrote:

is there a way to name sheets with a date using a macro?