Splitting a Window 70 percent of the way down the window: : ActiveWindow « Application « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Application
- ActiveWindow
Splitting a Window 70 percent of the way down the window:
Sub split()
With ActiveWindow
.Split = True
.SplitVertical = 70
End With
End Sub
Related examples in the same category