freeze rows in excel RESOLVED
Posted: Wed Dec 15, 2021 4:38 am
Guys:
How can i do that?
Thanks
How can i do that?
Thanks
www.FiveTechSoft.com
https://forums.fivetechsupport.com/~fivetec1/forums/
https://forums.fivetechsupport.com/~fivetec1/forums/viewtopic.php?t=41196
Jimmy wrote:I have to look into my crystal ball ...
but I don't see a solution with so little information.
Code: Select all | Expand
Sub Macro1()
'
' Macro1 Macro
'
'
With ActiveWindow
.SplitColumn = 0
.SplitRow = 1
End With
ActiveWindow.FreezePanes = True
End Sub
Code: Select all | Expand
oWin := oExcel:ActiveWindow
oSheet:Cells( 2, 1 ):Select()
oWin:FreezePanes := .t.