Set Windows Freeze Panes

S

Sean

How do I set via code the Windows Freeze frame at C9 and have the
cursor on Cell C9 also

Thanks
 
J

John Bundy

Does this do what you need?
Range("C9").Select
ActiveWindow.FreezePanes = True
 
Top