Selecting a Cell (using number of row AND number of column):
Return to List
Cells(1,1).Select' Will select the cell at A1 ==> Cells(RowIndex, ColumnIndex).Select
' Suggest you get in the habit of working with Column Numbers rather than column letters simply because it's much easier to cycle through them with a For...Next Loop, and also becomes easier to select individual cells.