| Cells is the VBA Collection of all the cells on a spreadsheet
Go to the Immediate Window and enter the following
Cells.count uses the count property to show you the number of cells in the spreadsheet Cells(4,2).Select Cells(3,1) = "abcd" puts the string "abcd" into row 4 column 2 or B4 |