help with copying of excel spread sheet from template trought VB

M

Mike

Guys/Ladies,

I need to copy template sheet in the work book with VB.
Anubody help??

Mike
 
P

Patrick Molloy

dim ws as worksheet
set ws = thisworkbooks.worksheets("???")
ws.copy

change ??? to the sheet name
 
J

JLGWhiz

Just a note to Patricks code. If Before:= or After:= is not specified, it
will create a new workbook.
 
Top