Is there a formula I can use to automatically skip blank rows and return only the values of a particular cell(s) that have numbers in them?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
=SMALL($A$1:$A$9,ROW())
Now, once you run out of values (in your case – 3) you’ll start to get a #NUM error.
To prevent that, use ISERROR as follows:
=IF(ISERROR(SMALL($A$1:$A$9,ROW())),””,SMALL($A$1:$A$9,ROW()))