Limit cursor range

R

Ron de Bruin

Hi Joe

With code you can do this

You can use this in the Thisworkbook module for Sheet1

Private Sub Workbook_Open()
Sheets("Sheet1").ScrollArea = "A1:AI100"
End Sub
 
Top