I have a sheet that has a Table (PeriodStatement) and has freeze pane active at I3
I have VBA to add a new row:
but I need it to select the first cell in the added row but if freeze panes is active it always selects the cell in Column I
Can it be done that it select the cell in Column A
Many thanks for looking
I have VBA to add a new row:
Code:
Range("AR3").Select
Selection.End(xlDown).Select
Selection.ListObject.ListRows.Add AlwaysInsert:=False
Cells(ActiveWindow.RangeSelection.Row, 1).Select
Can it be done that it select the cell in Column A
Many thanks for looking