I have formulas in from cells B3 down through B1000 of a spreadsheet that will display "" (nothing) if they evaluate to false. There may be an instance where a particular cell within this column evaluates to false and I am trying to find and select the first cell that displays nothing using the following code:
What ends up happening is cell B1001 gets selected even if say cell B651 is empty. I'm not sure what I'm doing wrong/what's missing so any all help anyone can provide would be much appreciated.
Code:
Range("B3").End(xlDown).Offset(0, 0).Select
What ends up happening is cell B1001 gets selected even if say cell B651 is empty. I'm not sure what I'm doing wrong/what's missing so any all help anyone can provide would be much appreciated.