Sum of a product with a date range

hofst038

New Member
Joined
Mar 11, 2016
Messages
17
I am trying to get a sum of something (devices installed) that is in a specific date range.

DateDevices Installed
3/1/20162
3/12/20161
3/15/20162
3/17/20161
4/3/20161

<tbody>
</tbody>

<tbody>
</tbody>
Basically I want a sum of all devices that were installed based off of the date range of 3/12/2016-3/19/2016. Does someone have a good formula to use for this?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I tried that, Im stuck on this Formula: =SUMIFS($A$2:$A$6, ">=" &DATEVALUE("3/7/2016"), "<="&DATEVALUE("3/14/2016"),$B$2:$B$6)
 
Upvote 0
Try

=SUMIFS($B$2:$B$6,$A$2:$A$6, ">=" &"3/7/2016", $A$2:$A$6,"<="&"3/14/2016")
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,846
Members
449,194
Latest member
HellScout

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