How do I get synchronized windows?

  • Thread starter Thread starter harry46
  • Start date Start date
H

harry46

In 1-2-3 you used to be able to force two windows viewing the same sheet but
widely different rows to keep their viewed columns oin step. This facility
still exists at least in Excel 2003 as an inherited relic from an imported
file, but I cannot find out how to set it up in a new spreadsheet. The two
synchronized windows can have independent excel-style splits allowing
further different ranges of rows to be viewed.
 
In 2003 Window>New window followed by Window>Arrange>Horizontal

If this post helps click Yes
 
In 2003 Window>New window followed by Window>Arrange>Horizontal

If this post helps click Yes
 
Only way to get old 1-2-3 style window sync (so you see Vsync and HSync in
caption) is with macro:

Windows.Arrange ActiveWorkbook:=True, synchorizontal:=true,
syncvertical:=true

to undo set both to false,
 
Only way to get old 1-2-3 style window sync (so you see Vsync and HSync in
caption) is with macro:

Windows.Arrange ActiveWorkbook:=True, synchorizontal:=true,
syncvertical:=true

to undo set both to false,
 
Yes, thank you, this does it. Perhaps it would be simpler if the next version
of Excel allowed an arbitrary number of splits in a window.
 
Yes, thank you, this does it. Perhaps it would be simpler if the next version
of Excel allowed an arbitrary number of splits in a window.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top