Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Lotus/Excel questions

In Lotus Release 5, I have a large spreadsheet with 25 worksheets set up
under the Global Group command. This allows me to work in a particular cell
and hit Ctrl & Page Up to go from one worksheet to another in that same cell.
Will Excel 2003 perform this same function? I know you can highlight the
tabs and can go to the same cell on each worksheet, but if you change
something in a cell it is reflected in all cells. I need to be able to make
changes in the individual cells, without it affecting the individual
worksheet.

Any suggestions?
--
tfost1
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 527
Default Lotus/Excel questions

Ctrl PGUP PGDN will work but not retain the same cell; Excel returns to the
last selected cell in the sheet.

To get the effect you want you will need a macro for each way. The macros
can be assigned shortcut keys in the Macro, Options say Ctrl + r and Ctrl + c

Sub GoNext()
Dim Addr As String
Dim i As Integer

Addr = ActiveCell.Address
i = ActiveSheet.Index

If i = Worksheets.Count Then
Exit Sub
Else
Application.Goto Worksheets(i + 1).Range(Addr)
End If

End Sub

Sub GoPrev()
Dim Addr As String
Dim i As Integer

Addr = ActiveCell.Address
i = ActiveSheet.Index

If i = 1 Then
Exit Sub
Else
Application.Goto Worksheets(i - 1).Range(Addr)
End If

End Sub

To Insert the macro in the current workbook press ALT + F11, Insert, Module
and copy the code into the module and return to the worksheet.

Press ALT + F8 to bring up the Macros form select the first macro and click
the Option button and assign the shortcut letter (It can not be PGUP). enter
a brief dscription and the shortcut keys Ctrl + Letter) Be careful not to use
one that Excel uses S,F,G,P etc.

Done this way the macros will only be available in the current workbook. To
make it available in all books they should be saved in your Personal workbook.

If you do not have one already then open a blank workbook and record a macro
while you do something simple. Save the file as Personal. Both macros are
then available in all workbooks.

Note: it you migrate to xl2007 your macros will no longer be available in
xl2003.

HTH
Peter



"noni1" wrote:

In Lotus Release 5, I have a large spreadsheet with 25 worksheets set up
under the Global Group command. This allows me to work in a particular cell
and hit Ctrl & Page Up to go from one worksheet to another in that same cell.
Will Excel 2003 perform this same function? I know you can highlight the
tabs and can go to the same cell on each worksheet, but if you change
something in a cell it is reflected in all cells. I need to be able to make
changes in the individual cells, without it affecting the individual
worksheet.

Any suggestions?
--
tfost1

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
Answers to questions posing more questions in a workbook sbelle1 Excel Worksheet Functions 2 August 8th 09 01:02 AM
Excel and lotus alan Excel Discussion (Misc queries) 3 September 26th 08 04:34 PM
View Questions and Answer to questions I created Roibn Taylor Excel Discussion (Misc queries) 4 July 24th 08 12:05 AM
Lotus to Excel to Lotus melselectric Excel Discussion (Misc queries) 2 July 25th 07 11:50 AM
Excel to Lotus CMS Excel Discussion (Misc queries) 2 October 8th 05 12:34 AM


All times are GMT +1. The time now is 11:38 AM.

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"