Sumproducts, Counta Lookup Ref Formulas

  • Thread starter Thread starter JR573PUTT
  • Start date Start date
J

JR573PUTT

I have 2 sheets, one summary, and one detail.

The detail is as follows:


Dept units
331 12
331 24
331
331 12
332
332 36
332 24
333

The summary is as follows:


Dept # of styles
331 3
332 2
333 0

I want the formula on the summary sheet to count the number of no
blank entries for each dept.

Which formula is it
 
=SUM(IF((A1:A10=331)*(B1:B10<>""),1))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
You just need to modify Bob's formula.


=SUM(IF((YourDetailSheetName!A1:A10=331)*(YourDetailSheetName!B1:B10<>""),1))

Again, it is an array formula so commit with Ctrl-Shift-Enter

Steve
 
Like we were told that!

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
You were right, the array function worked perfectly, and you got the
right answer 1st, so thanks again and sorry I did not catch on quick
enough!
 
=SUM((A1:A10=331)*(B1:B10<>""))

Biff

Bob Phillips said:
=SUM(IF((A1:A10=331)*(B1:B10<>""),1))

which is an array formula, it should be committed with Ctrl-Shift-Enter,
not
just Enter.

--

HTH

Bob Phillips

(remove nothere from the email address 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