Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have dates of transactions in Column A,
the dates are not consecutive since some dates did not have transactions, amounts are listed in column B. How do i add up the amounts based on dates. Cell C1 would be the 'from date' and D1 would be the 'to date' E1 would contain the answer. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"bobby769" wrote:
I have dates of transactions in Column A, the dates are not consecutive since some dates did not have transactions, amounts are listed in column B. How do i add up the amounts based on dates. Cell C1 would be the 'from date' and D1 would be the 'to date' E1 would contain the answer. One way: =sumproduct((C1<=A1:A100)*(A1:A100<=D1),B1:B100) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Using SUMIF ..the below will give you sum inclusive of both dates..
=SUMIF(A:A,"=" &C1,B:B)-SUMIF(A:A,"" &D1,B:B) If this post helps click Yes --------------- Jacob Skaria "bobby769" wrote: I have dates of transactions in Column A, the dates are not consecutive since some dates did not have transactions, amounts are listed in column B. How do i add up the amounts based on dates. Cell C1 would be the 'from date' and D1 would be the 'to date' E1 would contain the answer. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summing based on various critiera | Excel Worksheet Functions | |||
Summing based on criteria | Excel Worksheet Functions | |||
Summing based on 2 criteria | Excel Discussion (Misc queries) | |||
Summing every nth row value based upon variable | Excel Worksheet Functions | |||
Summing one column based on date in another column | New Users to Excel |