Link to home
Start Free TrialLog in
Avatar of wrt1mea
wrt1mea

asked on

I need an updated excel formula

OK, here is a softball for someone...

I need the following formula to EXCLUDE column B from the counts if Column B is blank. Column B contains text.

=SUMPRODUCT((MFDATA!$C$2:$C$5000=MFINFO!A6)*(MFDATA!$H$2:H$5000+MFDATA!$I$2:I$5000+MFDATA!$N$2:$N$5000=0)*(MFDATA!$K$2:$K$5000="N"))
ASKER CERTIFIED SOLUTION
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RFD110
RFD110

Do you need to check the entire B column or just a specific cell? You could easily use the if() formula to test if a cell or range of cells is blank, and either have two separate Sumproduct() equations, or have the if() return a 0 that is added to the existing equation.
Avatar of wrt1mea

ASKER

Works great!