B
Bhuktar S
How do I set 2 scroll areas in excel sheet
Oda Yujiro said:Hi! "Bhuktar S >",
I don't understand exactly what you want,
but how about this:
Select any cell, then Windows Menu | Split
Try to select any cell on the very upper row , rightmost row or else,
then split-window.
If you like Macro, then:
Example:
*************************
Sub Macro1()
'
' Macro1 Macro
' Macro
Range("F1").Select
With ActiveWindow
.SplitColumn = 5
.SplitRow = 0
End With
End Sub
or
*******************
Sub Macro2()
'
' Macro2 Macro
'
Range("A10").Select
With ActiveWindow
.SplitColumn = 0
.SplitRow = 9
End With
End Sub
Good Luck!