''It's possible to synchronize the scrolling of two windows (each set to the
''**same worksheet**) with a macro:
''http://support.microsoft.com/default.aspx?scid=kb;en-us;Q119718
Sub Sync_On()
'Enables horizontal and vertical window synchronization
Application.Windows.Arrange arrangestyle:=xlTiled, _
ActiveWorkbook:=True, synchorizontal:=True, syncvertical:=True
End Sub
Sub Sync_Off()
'Disables horizontal and vertical window synchronization
Application.Windows.Arrange arrangestyle:=xlTiled, _
ActiveWorkbook:=True, synchorizontal:=False, syncvertical:=False
End Sub
|