Add an additional lookup to this formula (sumproduct)

jaspa

New Member
Joined
Jun 6, 2007
Messages
25
Hi All,

I have this formula that gives me half of the value I need:

=SUMPRODUCT(--(TEXT(CSVData!F2:F65535,"mmyyyy")=TEXT(E2,"mmyyyy"))*(CSVData!K2:K65535="No"))

What I need to do now is add a lookup for town as well as the "No" value. so something like

=SUMPRODUCT(--(TEXT(CSVData!F2:F65535,"mmyyyy")=TEXT(E2,"mmyyyy"))*(CSVData!K2:K65535="No") + CSVDATA!L2:L65535="Town")

I have tried several variations, based on posts on the net but either get 00 or #N/A or #Value .

Any help much appreciated.

Jaspa
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Don't use "+", continue to use "*", i.e.

Code:
[COLOR=#333333]=SUMPRODUCT(--(TEXT(CSVData!F2:F65535,"mmyyyy")=TEXT(E2,"mmyyyy"))*(CSVData!K2:K65535="No") * (CSVDATA!L2:L65535="Town"))[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,215,331
Messages
6,124,311
Members
449,152
Latest member
PressEscape

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top