How to find the first blank cell in a range
GB wrote:
If D1 is the first cell in the destination range, then the following formula
will select the first blank cell in the column below it.
Range("D1").End(xlDown).Offset(1,0).select
This needs a little more thought; it doesn't work if D1 is blank or if
D1 is not but D2 is.
Alan Beban
|