I can't recall how to count the filled rows in a column and then select the count + 1 cell. This is what I started with.
example:
column A
1 bob
2 fred
3 pat
countrange = 3
n = 4
I want to select cell "A4"
Thanks!
Code:
Sub countrange() 'value of cells in column A:A
countrange = Count("A:A")
n = countrange + 1
Cell.Select = ("A" + n)
example:
column A
1 bob
2 fred
3 pat
countrange = 3
n = 4
I want to select cell "A4"
Thanks!