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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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,224,823
Messages
6,181,184
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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