Summing up values based on date criteria

csheeri

New Member
Joined
Aug 11, 2017
Messages
1
Hi all,

I am new to this forum so hope my post is ok :-)

I am trying to sum up values based on date criteria. Say the date is 04/08/2017. I want to add up the total volume for that date and populate into one cell as below without having to do it manually. Does anyone know a formula for this? I am thinking along the lines of using a frequency function with a sum if function ?

Many thanks,

Cara

[TABLE="width: 500"]
<tbody>[TR]
[TD]Date
[/TD]
[TD]Volume
[/TD]
[TD][/TD]
[TD]Date
[/TD]
[TD] Total Volume for Specific Date
[/TD]
[/TR]
[TR]
[TD]01/08/17
[/TD]
[TD]1000
[/TD]
[TD][/TD]
[TD]01/08/2017
[/TD]
[TD]1000
[/TD]
[/TR]
[TR]
[TD]01/08/17
[/TD]
[TD][/TD]
[TD][/TD]
[TD]02/08/2017
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]03/08/17
[/TD]
[TD]500
[/TD]
[TD][/TD]
[TD]03/08/2017
[/TD]
[TD]500
[/TD]
[/TR]
[TR]
[TD]04/08/17
[/TD]
[TD]2
[/TD]
[TD][/TD]
[TD]04/08/2017
[/TD]
[TD]17
[/TD]
[/TR]
[TR]
[TD]04/08/17
[/TD]
[TD]10
[/TD]
[TD][/TD]
[TD]05/08/2017
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]04/08/17
[/TD]
[TD]5
[/TD]
[TD][/TD]
[TD]06/08/2017
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]05/08/17
[/TD]
[TD]1
[/TD]
[TD][/TD]
[TD]07/08/2017
[/TD]
[TD]1002
[/TD]
[/TR]
[TR]
[TD]07/08/17
[/TD]
[TD]1000
[/TD]
[TD][/TD]
[TD]08/08/2017
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]07/08/17
[/TD]
[TD]2
[/TD]
[TD][/TD]
[TD]09/08/2017
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Like this?


Excel 2013/2016
ABCDE
1DateVolumeDateTotal Volume for Specific Date
21/8/201710001/8/20171000
31/8/20172/8/20170
43/8/20175003/8/2017500
54/8/201724/8/201717
64/8/2017105/8/20171
74/8/201756/8/20170
85/8/201717/8/20171002
97/8/201710008/8/20170
107/8/201729/8/20170
Sheet1
Cell Formulas
RangeFormula
E2=SUMIF(A:A,D2,B:B)
 
Upvote 0

Forum statistics

Threads
1,223,897
Messages
6,175,270
Members
452,628
Latest member
dd2

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