Count IF/And

  • Thread starter Thread starter GoogleUser
  • Start date Start date
G

GoogleUser

Hi
I need to write a formula that will have this logic.

IF E6="X" then count for all blanks in F6:K6 and place it in L6

Can someone help me with the proper code.

Tnank you in advance
Gary
 
GoogleUser said:
I need to write a formula that will have this logic.
IF E6="X" then count for all blanks in F6:K6 and place
it in L6

I don't see an "if/and" in that logic, so I'm not sure I understand.

Perhaps the following in L6:

=IF(E6="X",COUNTBLANK(F6:K6),"")
 
Back
Top