SumIf today's date falls between 2 dates

kcrabb2

New Member
Joined
Oct 22, 2015
Messages
9
I'm trying to sumif today's date falls between dates in two different columns, below is an example of how the data may look.

[TABLE="width: 500"]
<tbody>[TR]
[TD="align: center"]Capitalization Date[/TD]
[TD]Retirement Date[/TD]
[TD]Value[/TD]
[/TR]
[TR]
[TD]01/01/2015[/TD]
[TD]12/31/2020[/TD]
[TD]150,000[/TD]
[/TR]
[TR]
[TD]01/01/2014[/TD]
[TD]12/31/2019[/TD]
[TD]100,000[/TD]
[/TR]
[TR]
[TD]06/01/2016[/TD]
[TD]12/31/2021[/TD]
[TD]50,000[/TD]
[/TR]
</tbody>[/TABLE]


So the returned value in this example would be 250,000. Seems like ti should be simple, I'm just struggling today....Thanks in advance!
 
Try SUMIFS (if you have Excel 2007 or newer):
Code:
=SUMIFS(C2:C4,A2:A4,"<=" & TODAY(),B2:B4,">=" & TODAY())
 
Upvote 0

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