View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
bigwheel
 
Posts: n/a
Default Copying worksheets to a new workbook

Well, as an illustration try this:-

Sheets("Sheet3").Move After:=Workbooks("test2.xls").Sheets(3)

changing the sheet name and workbook name to suit your requirements, of
course.
The target worksheet needs to be open.

"csimont" wrote:

Bigwheel,
I tried your script and the worksheet was copied into the existing file. I
need to move the copied worksheet to a new workbook all by it's lonesome
self. Suggestions?

"csimont" wrote:

Hi!
I am getting a debug error message on this line:
Next wSht
Sheets(1).Copy beof=Sheets(1)
Sheets(1).Name = shtName

Sheets(shtName).Move = Workbook : This is line.

I changed it from the original code and I cannot see the error of my ways.
The macro does take the active worksheet and creates a new workbook but the
error message comes up before I can continue to work with the data.

Can anyone help?