A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Use Cells(row_number, column_number).
For example, cell D2 (2nd row, 4th column) is Cells(2, 4)
Dim c As Long
For c = 1 To 15 Step 2
Cells(2, c).Value = c
Next c