This is a bit related to my other 2 recent questions here butI'm leaving those up in case anyone gives a direct answer.Can someone tell me the best VBA way to .Select a cell in a sheet if Ihave a row *number* and column *number* please?
Cells(r,c).selectr being the row number and c the column number.and to select a range use:Range(cells(r1,c1),cells(r2,c2)).select
--------------------cells(i,j).select--------------------i= row numberj= column number