I have this routine that works upon activation of each worksheet. But since rows can be inserted&added into such worksheets I would need it to change dynamically.i.e. when I add a row, this range sould automatically be "A1:AI28"
can someone hlp?
Private Sub Worksheet_Activate()
Me.ScrollArea = "A1:AI27"
...
'To set back to normal use:
'Me.ScrollArea = ""
End Sub
can someone hlp?
Private Sub Worksheet_Activate()
Me.ScrollArea = "A1:AI27"
...
'To set back to normal use:
'Me.ScrollArea = ""
End Sub