x if six cells are blank

J

Jim

Hello,

I have about 5k lines of data. Columns A, B and C all have data. D, E, F,
G, H and I may or may not have data. In K I would like to have a formula
that would read D, E, F, G, H and I and if they are all blank I would like
for K to return a X.

Thanks in advance for the help.
Jim
 
J

Jacob Skaria

'if all are blank (no formulas)
=IF(COUNTBLANK(D9:I9)=6,"X","")
=IF(COUNTA(D10:I10)=0,"X","")

'if you have formulas returning blank try
=IF(COUNTIF(D11:I11,"?*")+COUNT(D11:I11)=0,"X","")

If this post helps click Yes
 
R

Rick Rothstein

Give this formula a try and copy it down as needed...

=IF(COUNTA(D1:I1),"","X")
 

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