Selecting a range in a different worksheet

B

Bob Chisholm

The code for a command button on SheetA says:

Worksheets("SheetB").Activate
Range("B2").Select

The "TakeFocusOnClick" property of the command button is set to false.

When the button on SheetA is clicked, the active worksheet switches OK
to
SheetB, but the Range("B2").Select statement generates an error '1004':
"Select method of Range class failed"

Does the code for selecting on SheetB need to be in a separate location
than
the code for SheetA's command button, such as in a Worksheet.Activate
event?

Or what else have I overlooked, left out, or done wrong?

Thanks for any help.
 
T

Tom Ogilvy

Worksheets("SheetB").Activate
Worksheets("SheetB").Range("B2").Select

the unqualified Range("B2").Select when used in a sheet module, infers that
Range("B2") is referencing B2 on the sheet containing the code. Since that
is not your intent and the sheet containing the code is not the activesheet,
you need to qualify where B2 is located.
 

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