Multiple criteria in 2 different columns for a sum in a 3rd column

C

Cyn

Trying to write a formula to fit this all info is on a different sheet in the
same workbook.

Masterdata(sheet name)( Column for 1st critera)
D2:D100,(Critera)"Infrastructure", (Column for 2nd critera), L2:L100
,(Critera)"PO", Sum N2:N100

My idea is that looking on the master data sheet if in Column D
"Infrastructure" is chosen and in column L "po" is chosen then it will add
totals in column N.
 
E

Eduardo

Hi,
try
=sumproduct(--(masterdata!$d$2:$d$100="Infrastructure"),--(masterdata!$l$2:$l$100="PO"),masterdata!$n$2:$n$100)
 
E

Eduardo

Hi,
try
=sumproduct(--(masterdata!$d$2:$d$100="Infrastructure"),--(masterdata!$l$2:$l$100="PO"),masterdata!$n$2:$n$100)
 
B

Bernd P

And if Cyn wants to list the sum of N2:N100 for all occuring different
values in D2:D100 and L2:L100:

Select a sufficiently long area (i.e. 20 rows) and 3 columns and array-
enter:
=Sfreq(D2:D100,L2:L100,N2:N100)

Sfreq you will find here:
http://www.sulprobil.com/html/sfreq.html

Regards,
Bernd
 
B

Bernd P

And if Cyn wants to list the sum of N2:N100 for all occuring different
values in D2:D100 and L2:L100:

Select a sufficiently long area (i.e. 20 rows) and 3 columns and array-
enter:
=Sfreq(D2:D100,L2:L100,N2:N100)

Sfreq you will find here:
http://www.sulprobil.com/html/sfreq.html

Regards,
Bernd
 

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