I am trying to find the first blank cell in column A, I have used the code
Range("A1").End(xlDown).Offset(1, 0).Select
The problem thatg is occuring is thatg it is finding cell A501 every time, this is becuase I used to have formula all the way down to cell A500 before copying the column and pasting simply the values over it.
I now need to find the first blank cell in this column but it shoots me down to 501 every time, any ideas on how to find the first cell that looks blank??
Cheers
Range("A1").End(xlDown).Offset(1, 0).Select
The problem thatg is occuring is thatg it is finding cell A501 every time, this is becuase I used to have formula all the way down to cell A500 before copying the column and pasting simply the values over it.
I now need to find the first blank cell in this column but it shoots me down to 501 every time, any ideas on how to find the first cell that looks blank??
Cheers