dabith,
Think you should probably consider the different ways of addressing cells. For instance, you can go to cells C1 with either of the following commands:
Range("C1").Select
Cells(1, 3).Select
The 2nd example is in the form Cells(Row,Col).Select -- which has the advantage of being able to set up a numeric loop with no trouble. For instance, if you wanted to select (sequentially) all of the cells in column C from row 1 to 100, you'd simply create a For/Next loop such as:
For i = 1 to 100
Cells(i, 3).Select
Next
To get more examples of this, suggest you see the page referenced below:
CarlR
www.vba-programmer.com