GreenyMcDuff
Active Member
- Joined
- Sep 20, 2010
- Messages
- 313
Hi there,
I have this code:
I need it to copy a selection from one sheet to the sheet labelled "Extinct". However, I get an error when I try to select the "Extinct" worksheet.
I hope it is just a syntax error.
Thanks for your help
Chris
I have this code:
Code:
With Selection
.Copy
[COLOR="Red"].Sheets ("Extinct")[/COLOR]
.Select
.Range("A1").Select
.Insert Shift:=xlDown
End With
I need it to copy a selection from one sheet to the sheet labelled "Extinct". However, I get an error when I try to select the "Extinct" worksheet.
I hope it is just a syntax error.
Thanks for your help
Chris