subscript out of range error: tyring to copy a hidden sheet

  • Thread starter Thread starter sam
  • Start date Start date
S

sam

I got a subscript out of range error when trying to copy sheet2. Sheet2 is
hidden.

here is the code:

Worksheets("Hidden").Copy Worksheets("Sheet2")

Thanks in advance
 
You shouldnt need the "hidden"


:
Worksheets.Copy Worksheets("Sheet2") should work fine
 
If you want the copy to be hidden also set it to visible = false.
If you want it to folow after a certain worksheet set it to copy after:= etc
and perhaps give the copy a name of your choice.

Worksheets("Sheet2").Copy After:=Worksheets("Sheet1")
ActiveSheet.Name = ("name of your choice")
ActiveSheet.Visible = False

good luck john
 
I dont know about copying your worksheet! you certainly seem to have coppied
your question successfully a few times.
I hope some of the answers prove useful
good luck
 
Back
Top