Sumproduct using dates

miguelre

New Member
Joined
Sep 21, 2006
Messages
30
In the past have been successful using the sumproduct to count based on multiple criteria. However, I can not get it to successful work with my date field that I am importing. Example of calculation below.

=SUMPRODUCT((AllStatusDetail!$E$4:$E$3205="Vanessa Rogers - CC&B")*(AllStatusDetail!$D$4:$D$3205="Y")*(AllStatusDetail!$F$4:$F$3205="9/15/2006 5:00:00 PM"))
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
In the past have been successful using the sumproduct to count based on multiple criteria. However, I can not get it to successful work with my date field that I am importing. Example of calculation below.

=SUMPRODUCT((AllStatusDetail!$E$4:$E$3205="Vanessa Rogers - CC&B")*(AllStatusDetail!$D$4:$D$3205="Y")*(AllStatusDetail!$F$4:$F$3205="9/15/2006 5:00:00 PM"))

If you really need the time bit...

=SUMPRODUCT(--(AllStatusDetail!$E$4:$E$3205="Vanessa Rogers - CC&B"),--(AllStatusDetail!$D$4:$D$3205="Y"),--(AllStatusDetail!$F$4:$F$3205="9/15/2006 5:00:00 PM")+0)

If not...

=SUMPRODUCT(--(AllStatusDetail!$E$4:$E$3205="Vanessa Rogers - CC&B"),--(AllStatusDetail!$D$4:$D$3205="Y"),--(AllStatusDetail!$F$4:$F$3205="9/15/2006")+0)

Note that using a coercer like -- (double negation) allows you to invoke SumProduct with its native comma-syntax.
 
Upvote 0

Forum statistics

Threads
1,214,954
Messages
6,122,462
Members
449,085
Latest member
ExcelError

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