Is there a specific reason you need to use the cells function? Do you just need to be able to refer to cells as numbers? I'm not sure of a way to select a range using just one cell function, but this has the same effect as what you are looking for without using "A1" or anything like that:
Range(Cells(3, 1), Cells(22, 1)).Select
Jeff