Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want a specific cell to be selected when a worksheet is opened, so
the user can go right to work without having to find that cell, select it, etc. I searched the newsgroup but can't find any articles on how to do this. Can somebody help? Thanks, Ron M. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You need a VBA procedure to do this. In the ThisWorkbook code
module, enter Private Sub Workbook_Open() ' change the sheet and cell reference as desired Application.Goto Worksheets("Sheet2").Range("B2"), True End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Ron M." wrote in message oups.com... I want a specific cell to be selected when a worksheet is opened, so the user can go right to work without having to find that cell, select it, etc. I searched the newsgroup but can't find any articles on how to do this. Can somebody help? Thanks, Ron M. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I know how to enter the code, I just didn't know what the code was.
You guys should get medals! Thanks! Ron M. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Ron
Something like the following code copied into the This Workbook module, would take the user to cell G10 of Sheet on opening the file Private Sub Workbook_Open() Sheets("Sheet1").Range("G10").Select End Sub Amend to suit the starting location you want. To copy the code in, Right click on any tab in the Workbook and choose View Code, to bring up the VB Editor. If the Project Explore is not visible, press Ctrl+R to bring it up. Locate your Workbook in the Explorer, and double click on the ThisWorkbook module. Copy the Code above and Paste into the Code pane (Press F7 to bring it up, if not visible) Press the Excel icon at top left to return to your sheet. Save the file. -- Regards Roger Govier "Ron M." wrote in message oups.com... I want a specific cell to be selected when a worksheet is opened, so the user can go right to work without having to find that cell, select it, etc. I searched the newsgroup but can't find any articles on how to do this. Can somebody help? Thanks, Ron M. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum of 3 nos. into 1 cell in another sheet relevant to specific da | Excel Discussion (Misc queries) | |||
print only selected cell contents without loosing spread sheet for | Excel Discussion (Misc queries) | |||
Clicking Cell Link Changes Cell on Another Sheet | Excel Discussion (Misc queries) | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Hyperlink to specific sheet in Excel Web File | Links and Linking in Excel |