SUMIFS Using ranges in the criterion

bTrain

New Member
Joined
Apr 23, 2017
Messages
1
Hi I am trying to create a SUMIFS formula that will SUM across a range On sheet Bank if their Description Equals the same as the Description Sheet 1 page, And the date on Bank Page falls between two ranges on Sheet 1.
I came up with this but it just equals 0

=SUMIFS(Bank!D2:D200,A2:A200,Bank!A2:A200,Bank!B2:B200,">=C2:C200",Bank!A2:A200,"<=D2:D200")

I think my problem lies here ">=C2:C200" and here "<=D2:D200".

Normally its ">=12/12/17", But i need it to match a range.

Any help is appreciated.


 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Re: SUMIFS Unsing ranges in the critirion

You are correct, that is indeed where the problem is. SUMIFS expects a single reference in it's criteria. If those ranges contain values, then maybe just add more criteria sets?
This part (Bolded) looks wrong too?
=SUMIFS(Bank!D2:D200,A2:A200,Bank!A2:A200,Bank!B2:B200,">=C2:C200",Bank!A2:A200,"<=D2:D200")

=SUMIFS(Bank!D2:D200,A2:A200,Bank!A2:A200,Bank!B2:B200,">="&C2,Bank!B2:B200,"<="&C200,Bank!A2:A200,"<="&D2,Bank!A2:A200,"<="&D200)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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