The Andrew N. Wiggins Consultancy

Contact me at webmaster@anw.biz

Experimental Site

 

This site designed by Byg Software Ltd

 

The ANW.BIZ Home Page
Up

Window Sync

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
   
''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
 
   

Published: 17 January 2004
Last edited: 29 July 2006 23:26