#1   Report Post  
Denise S
 
Posts: n/a
Default Global Group

Can I work in Global Group in Excel?
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

Maybe....

What's a Global Group?

Denise S wrote:

Can I work in Global Group in Excel?


--

Dave Peterson
  #3   Report Post  
trees1021
 
Posts: n/a
Default

Hi, Denise & I have been trying to figure this out together. Is there a way
to switch from one worksheet to another, in the same workbook, and stay in
the same cell from sheet to sheet without having to scroll?

"Dave Peterson" wrote:

Maybe....

What's a Global Group?

Denise S wrote:

Can I work in Global Group in Excel?


--

Dave Peterson

  #4   Report Post  
trees1021
 
Posts: n/a
Default

Hi, Denise and I have been trying to figure this out together. Is there a way
to move from one sheet to another sheet and remain in the same cell as in
Lotus? Excel always reverts to cell A1 or the cell where you left off when
previously on that sheet.

Gail

"Dave Peterson" wrote:

Maybe....

What's a Global Group?

Denise S wrote:

Can I work in Global Group in Excel?


--

Dave Peterson

  #5   Report Post  
Dave Peterson
 
Posts: n/a
Default

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."




trees1021 wrote:

Hi, Denise and I have been trying to figure this out together. Is there a way
to move from one sheet to another sheet and remain in the same cell as in
Lotus? Excel always reverts to cell A1 or the cell where you left off when
previously on that sheet.

Gail

"Dave Peterson" wrote:

Maybe....

What's a Global Group?

Denise S wrote:

Can I work in Global Group in Excel?


--

Dave Peterson


--

Dave Peterson


  #6   Report Post  
Ragdyer
 
Posts: n/a
Default

Does this help?

Click the first sheet tab, hold down <Ctrl, click in last sheet tab.
Now, navigate to desired cell and click in it.

That cell is now the cell of focus in *all* your sheets.
Right click in a tab and choose "Ungroup Sheets".

When you click in any sheet tab, you'll find that the cell you selected when
the sheets were "Grouped", is now selected in all the sheets.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"trees1021" wrote in message
...
Hi, Denise and I have been trying to figure this out together. Is there a

way
to move from one sheet to another sheet and remain in the same cell as in
Lotus? Excel always reverts to cell A1 or the cell where you left off when
previously on that sheet.

Gail

"Dave Peterson" wrote:

Maybe....

What's a Global Group?

Denise S wrote:

Can I work in Global Group in Excel?


--

Dave Peterson


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
How can I find the max in each group? LRATLARSON Excel Worksheet Functions 5 April 29th 23 11:43 AM
How do I set up and use a group box form control? Grizz905 Excel Discussion (Misc queries) 1 January 20th 05 10:14 PM
Subtotal of Subtotal displays Grand Total in wrong row Thomas Born Excel Worksheet Functions 5 January 6th 05 01:46 PM
copy group of cells to another group of cells using "IF" in third Chuckak Excel Worksheet Functions 2 November 10th 04 06:04 PM
Group by count formula nobrabbit Excel Worksheet Functions 1 November 7th 04 09:10 PM


All times are GMT +1. The time now is 07:49 AM.

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

About Us

"It's about Microsoft Excel"