Thread
:
naming tabs
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
Posts: 11,058
naming tabs
Sub missive()
s = Array("jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep",
"oct", "nov", "dec")
For i = 1 To 12
Sheets(i).Name = s(i - 1) & " 2008"
Next
End Sub
mind the text wrapping!!
--
Gary''s Student - gsnu200759
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student