how do I turn off vsync in excel?

R

Richard J Scott

When using excel, viewing the same worksheet in two windows, sometimes the
navigation is syncronised in both, and sometimes not.
This prevents me looking at different parts of the sheet at the same time.
When it is, there is the word [VSync] next to the title bar.
How do I turn this off?

There is nothing in help on VSync
 
J

Jim Rech

The window syncing UI has been removed since Excel 4. So run this macro and
save your workbook:

Sub SyncOff()
Windows.Arrange ActiveWorkbook:=True, synchorizontal:=False,
syncvertical:=False
End Sub

--
Jim
message | When using excel, viewing the same worksheet in two windows, sometimes the
| navigation is syncronised in both, and sometimes not.
| This prevents me looking at different parts of the sheet at the same time.
| When it is, there is the word [VSync] next to the title bar.
| How do I turn this off?
|
| There is nothing in help on VSync
 
Top