=sumproduct array with "and" or "or"

TxMimi

New Member
Joined
Jul 24, 2014
Messages
7
Currently I have a log that I am tracking metrics that I want to auto calculate in table format. (Not using a pivot table)

I am using this =SUMPRODUCT(--(RFSLog!$D$6:$D$1004="divi1"), --(RFSLog!$J$6:$J$1004>="01/01/2014"+0),--(RFSLog!$J$6:$J$1004<="01/31/2014"+0))

I am trying to get a total by the date range of the number of requests for div1 - which the above does, but I need to add an "AND" statement so that it searches column D for div1 and div2.

suggestions?

Thanks :)
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Welcome to MrExcel.

Use + for OR:

=SUMPRODUCT(((RFSLog!$D$6:$D$1004="divi1")+(RFSLog!$D$6:$D$1004="divi2")), --(RFSLog!$J$6:$J$1004>="01/01/2014"+0),--(RFSLog!$J$6:$J$1004<="01/31/2014"+0))
 
Upvote 0
Try

=SUMPRODUCT(--((RFSLog!$D$6:$D$1004="divi1")+(RFSLog!$D$6:$D$1004="divi2")), --(RFSLog!$J$6:$J$1004>="01/01/2014"+0),--(RFSLog!$J$6:$J$1004<="01/31/2014"+0))
 
Upvote 0

Forum statistics

Threads
1,215,483
Messages
6,125,064
Members
449,206
Latest member
Healthydogs

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