Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Does anyone know how to get the cursor to jump to the same exact location
within a worksheet when switching between multiple worksheets within a single workbook in Excel. In Lotus I used to be able to do this by selecting "group mode". I am using Office 2003. I have tried holding down the "control" key and clicking on the multiple tabs for the various worksheets that I want to be in group mode, but when I do this, the contents of the cell that I am in get copied to the other worksheets. |
#2
![]() |
|||
|
|||
![]()
First, I think that this would drive me crazy--especially since I'd only want to
use this on rare occasions. But this may work out ok for you: (saved from a previous post) If you want to use a couple of macros, you can do it. Option Explicit Dim CurActCellAddr As String Private Sub Workbook_Open() CurActCellAddr = ActiveCell.Address End Sub Private Sub Workbook_SheetActivate(ByVal Sh As Object) If CurActCellAddr = "" Then 'do nothing Else With Application .EnableEvents = False .Goto Sh.Range(CurActCellAddr) .EnableEvents = True End With End If CurActCellAddr = ActiveCell.Address End Sub Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _ ByVal Target As Range) CurActCellAddr = ActiveCell.Address End Sub rightclick on the excel icon to the left of the File|edit|view (on the worksheet menubar). select view code and paste this in. Then try it out. The first time the address gets initialized is with the workbook open event. If you test without closing/reopening your workbook, it may take one selection change to "prime the pump." Mark P wrote: Does anyone know how to get the cursor to jump to the same exact location within a worksheet when switching between multiple worksheets within a single workbook in Excel. In Lotus I used to be able to do this by selecting "group mode". I am using Office 2003. I have tried holding down the "control" key and clicking on the multiple tabs for the various worksheets that I want to be in group mode, but when I do this, the contents of the cell that I am in get copied to the other worksheets. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Can't group pivot table items by month in Excel | Excel Discussion (Misc queries) | |||
Unable to open excel sheet in Protected mode from VB 6.0 | Setting up and Configuration of Excel | |||
Subtotal of Subtotal displays Grand Total in wrong row | Excel Worksheet Functions | |||
how do you group and ungroup rows or columns in new Excel? | Excel Worksheet Functions |