Copy method of range class failed

Q

quiksilver

Hello,

when I try to run my macro I have recorded before I get message "Copy
method of range class failed"; it is just simple
Range("B1:B10").Select
Selection.Copy
Anybody has idea on this bug ?

Thanks a lot


PS I have ibook G4 933, office 2004
 
J

JE McGimpsey

quiksilver said:
Hello,

when I try to run my macro I have recorded before I get message "Copy
method of range class failed"; it is just simple
Range("B1:B10").Select
Selection.Copy
Anybody has idea on this bug ?

Thanks a lot


PS I have ibook G4 933, office 2004

Have you updated Office 2004? This was a frequent problem before the SP1
update.

BTW. You almost never need to select anything. Your

Range("B1:B10").Select
Selection.Copy

is more efficient, shorter, and easier to maintain (IMO) as

Range("B1:B10").Copy
 

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