There are two ways you can reference a cell for example if you want to refer to cell B10 then you can do it like this

Code:
Range("B10")
or

Code:
Cells(10,2) '<~~ 10 is the row number and 2 is the column number