M
Matt Houston
Hi,
if I have a row selected, how can I select the first cell in the nex
row using VBA
thank
if I have a row selected, how can I select the first cell in the nex
row using VBA
thank
Jack Schitt said:How about
ActiveWindow.RangeSelection.Offset(1, 0).Resize(1, 1).Select
Don Guillett said:that only goes down one from the active cell but this goes to col A of the
next row
Cells(ActiveCell.Row + 1, "a").Select
Don Guillett said:that only goes down one from the active cell but this goes to col A of the
next row
Cells(ActiveCell.Row + 1, "a").Select