View two sheets - moving in sync

ostrom808

New Member
Joined
May 24, 2006
Messages
10
Remember Lotus used to do this?

I have on one sheet - 600 rows of financial products by 100 regions worth of $ balances and on another identically formatted sheet the associated interest rates.

I just want to page down on the $balances tab and have interest rates tab move in sync - letting me eyeball the related info.

I've tried searching for an hour to come up with the right terms - split, freeze, etc.

Sorry if this is obvious!

Thanks in advance for your help!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
If you have Excel 2003, go to the Windows menu and choose New Window. Then go to the Window menu again and choose Compare Side by Side With .....
 
Upvote 0
If you are using Excel2003 or later, then you can use the SideBySide function (Window>View Side By Side).

If you are looking at two sheets in the same workbook, you will probably want to go Window>New Window so you can display both sheets at the same time first.
 
Upvote 0
If you have Excel 2003, go to the Windows menu and choose New Window. Then go to the Window menu again and choose Compare Side by Side With .....

And if I have Excel 2002? :cry:
 
Upvote 0
This is not idea, but try this:
On sheet1, click the worksheet tab and select "View Code"
Paste the following:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Worksheets("Sheet2").Cells.Interior.ColorIndex = xlColorIndexNone
Worksheets("Sheet2").Range(Target.Address).Interior.ColorIndex = 3
End Sub
Then back in Excel select Window>New Window.
Arrange the 2 windows side by side so that sheet1 is showing on one and sheet2 is showing on the other.
When you select a new cell on sheet1, the corresponding cell will be highlighted on sheet2. You could amend the range selection to suit.

Won't scroll for you (but I'm this could be achieved in a similar way) but at least you can see the comparison.
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,039
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top