Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Selecting a range in a different worksheet

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.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Selecting a range in a different worksheet

Try this instead:

Application.GoTo Worksheets("SheetB").Cells(2, 2)

- Pikus


---
Message posted from http://www.ExcelForum.com/

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Selecting a range in a different worksheet

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.

--
Regards,
Tom Ogilvy


"Bob Chisholm" wrote in message
...
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.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Please help with selecting a range keri Excel Discussion (Misc queries) 7 December 12th 06 08:56 PM
Selecting range in list of range names depending on a cell informa Courreges Excel Discussion (Misc queries) 2 June 19th 06 10:59 AM
Selecting a Worksheet Range Coolboy55 Excel Worksheet Functions 6 August 23rd 05 03:57 PM
selecting a range in vb jws217 Excel Programming 1 December 31st 03 03:58 PM
Help with selecting a range... Don Guillett[_4_] Excel Programming 0 July 22nd 03 03:18 PM


All times are GMT +1. The time now is 12:03 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"