Sumproduct or Countif

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Inventory spreadhseet with Column A = multiple product models and column c =
Date received

Need formula to count each criteria in column A if column b is blank.
Need second formula if column B is non-blank.

Thanks!
 
Corrected (sorry)

Inventory spreadhseet with Column A = multiple product models and column c =
Date received

Need formula to count each criteria in column A if column c is blank.
Need second formula if column c is non-blank.

Thanks!
 
=SUM(--(FREQUENCY(IF($C$1:$C$10<>"",MATCH($A$1:$A$10,$A$1:$A$10,0)),ROW(INDI
RECT("1:"&ROWS($A$1:$A$10))))>0))

and

=SUM(--(FREQUENCY(IF($C$1:$C$10="",MATCH($A$1:$A$10,$A$1:$A$10,0)),ROW(INDIR
ECT("1:"&ROWS($A$1:$A$10))))>0))

which arearray formulae, it should be committed with Ctrl-Shift-Enter, not
just Enter.

Note the second will fail if you have blanks in column A

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 

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

Back
Top