I have a worksheet that has formulas in columns A, B, and C in rows 1-10000. If there is no value as a result of the formula, it enters a "" (blank) instead of returning "#N?A".
How do I use VBA to select only the cells that have actual values, and are not blank? In this case, I have 2493 of 10000 rows that actually have data.
Using
does not work, as it selects all 10000 rows; I only want the first, non-blank, 2493 rows.
Thank you!
How do I use VBA to select only the cells that have actual values, and are not blank? In this case, I have 2493 of 10000 rows that actually have data.
Using
Code:
Range("A1", Selection.End(xlDown)).Select
Thank you!