sumif based on sumproduct

dbDonB

New Member
Joined
Aug 31, 2006
Messages
11
Hi using sum product to count the following conditions:

=SUMPRODUCT(--(Data!$F$3:$F$203="professional"),--(Data!$D$3:$D$203 >= "10/1/2005"+0),--(Data!$D$3:$D$203 <= "7/31/2006"+0),--(Data!$I$3:$I$203="AGENCY"))

This works like a charm thanks to Brian from Maui.

Now want to sum the fees in col K if all the above are true.

Tried this, but it incorrectly calculates a 0 sum

=SUMIF(Data!K3:K203,SUMPRODUCT(--(Data!$F$3:$F$203="professional"),--(Data!$D$3:$D$203 >= "10/1/2005"+0),--(Data!$D$3:$D$203 <= "7/31/2006"+0),--(Data!$I$3:$I$203="AGENCY"))>0)

Any help would be greatly appreciated
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try:

=SUMPRODUCT(--(Data!$F$3:$F$203="professional"),--(Data!$D$3:$D$203 >= "10/1/2005"+0),--(Data!$D$3:$D$203 <= "7/31/2006"+0),--(Data!$I$3:$I$203="AGENCY"),(Data!$K$3:$K$203))
 
Upvote 0
Just add it to the end of your Sumproduct:

=SUMPRODUCT(--(Data!$F$3:$F$203="professional"),--(Data!$D$3:$D$203 >= "10/1/2005"+0),--(Data!$D$3:$D$203 <= "7/31/2006"+0),--(Data!$I$3:$I$203="AGENCY"),Data!$K$3:$K$203)
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,715
Members
448,985
Latest member
chocbudda

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