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

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
 
A

Atishoo

You shouldnt need the "hidden"


:
Worksheets.Copy Worksheets("Sheet2") should work fine
 
A

Atishoo

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
 
A

Atishoo

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top