View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Eva Shanley[_2_] Eva Shanley[_2_] is offline
external usenet poster
 
Posts: 29
Default Increment sheet names

Ron, thanks for the answer! The only problem is I didn't
think to mention our Wk 1 goes by fiscal year instead of
calendar year. My Wk 1 is actually the week starting
Sat., February 8, 2003. I can modify the code to subtract
a set number of days to get the right week, but that
obviously causes problems for the user if they don't run
this within a certain time period.

-----Original Message-----
Try this

Worksheets.Add.Name = "Wk " & weeknum(Now)

You must check the Analysis toolpack VBA add-in
ToolsAdd-ins in Excel

And in the VBA editor
Tools References, and put a check next

to "ATPVBAEN.xls" workbook in the
references list.


--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Eva Shanley" wrote

in message ...
I need to add a new sheet to a file every week; that new
sheet name becomes Wk 39, the previous sheet was Wk 38,
for all 52 weeks. Is there a way to automatically label
the new sheet to the new week number? I've been trying

to
come up with code to do this for awhile, but I'll admit
defeat at this point. Thanks!



.