How to check for blank cells with formula

B

Bob Flanagan

I have a number of cells in a row that have formulas that return either text
or "". For example:

=IF(FIND(H$1,$A3)>0,H$1,"")

will return the text in H1 if cell A3 contains H1. The above formulas are
in columns E through R for each row of data. Some return text, and some
return "". I want to identify which rows return "" for all cells in that
row in column E through R by putting a formula in column S. Trouble is, I
can't figureout the formula!!! I tried CountA, but it counts cells with ""
as a cell with an entry. Any suggestions?

Bob
 
T

T. Valko

Try something like this:

=COUNTBLANK(E1:R1)=14

Will return TRUE when all cells are blank/empty.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top