i'm using:
Set wb = Application.Workbooks.Open("c:\temp\temp.xlsx")
If Err.Number <> 0 Then
MsgBox Err.Description & "help"
Else
ws.Copy After:=wb.Sheets(wb.Sheets.Count) 'error: "Object required..." on this line
wb.Save
wb.Close
to copy out the worksheet to another file, but i get an error: "Object required..."
???
thank you.
