Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to have a workbook start up in a "Home Cell"?
I would like the users to start in the same cell every time they open the workbook. thanks! -- Jeff |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jeff,
Alt+F11 to open VB editor. double click 'This Workbook" and paste this in on the right Private Sub Workbook_Open() Sheets("Sheet1").Range("A1").Select End Sub Change the sheet and range to suit Mike "Jeff" wrote: Is there a way to have a workbook start up in a "Home Cell"? I would like the users to start in the same cell every time they open the workbook. thanks! -- Jeff |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sweet!
thank you -- Jeff "Mike H" wrote: Jeff, Alt+F11 to open VB editor. double click 'This Workbook" and paste this in on the right Private Sub Workbook_Open() Sheets("Sheet1").Range("A1").Select End Sub Change the sheet and range to suit Mike "Jeff" wrote: Is there a way to have a workbook start up in a "Home Cell"? I would like the users to start in the same cell every time they open the workbook. thanks! -- Jeff |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Either manually save the workbook with that cell selected or use event code
when closing or opening. How about when you open? Private Sub Workbook_Open() Worksheets("Sheet1").Activate 'edit sheetname to suit Range("G22").Select 'edit cell to suit Application.Goto ActiveCell, Scroll:=True 'will place G22 at top left End Sub Right-click on the Excel Icon left of "File" and select "View Code" Copy/paste the code into that module. Edit to suit then Alt + q to return to the Excel window. Save and close the workbook then re-open for the code to work. Gord Dibben MS Excel MVP On Wed, 17 Dec 2008 12:43:01 -0800, Jeff wrote: Is there a way to have a workbook start up in a "Home Cell"? I would like the users to start in the same cell every time they open the workbook. thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get my Pointer to go to cell A1 when I press Home? | Setting up and Configuration of Excel | |||
Is there a way to make the home key always go back to same cell? | Excel Discussion (Misc queries) | |||
Control + Home to get to A1 cell | Excel Discussion (Misc queries) | |||
How can i set-up home key go to a particular cell? | Setting up and Configuration of Excel | |||
Shortcut keys: CNTRL+HOME vs. HOME | Excel Discussion (Misc queries) |