Calulating yearly interest payments

dazed+confused

New Member
Joined
Apr 25, 2011
Messages
2
Hi,

I've been ripping my hair out for the past few hours and finally gave up. I'm hoping someone on this board can put me out of my misery :) I want to calculate the total interest paid each year. I have one table with the interest payments per month:


Date Bank Interest
2012: December 584 €
2013: January 583 €
2013: February 582 €
2013: March 581 €
2013: April 579 €
2013: May 578 €
2013: June 577 €
2013: July 576 €
2013: August 575 €
2013: September 574 €
2013: October 572 €
2013: November 571 €
2013: December 570 €
2014: January 569 €
2014: February 568 €
2014: March 567 €
2014: April 565 €
2014: May 564 €
2014: June 563 €
2014: July 562 €
2014: August 561 €
2014: September 559 €
2014: October 558 €
2014: November 557 €
2014: December 556 €
2015: January 554 €
2015: February 553 €
2015: March 552 €
2015: April 551 €
2015: May 549 €

And I am trying to calculate the values in this table:

2012 2013 2014 2015
Total Interest:

Can anyone help?

Thanks,
Dazed+Confused
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Excel Workbook
ABC
1Date Bank InterestYearAmount
22012: December 584 2012584
32013: January 583 2013583
42013: February 582 2013582
52013: March 581 2013581
62013: April 579 2013579
72013: May 578 2013578
82013: June 577 2013577
92013: July 576 2013576
102013: August 575 2013575
112013: September 574 2013574
122013: October 572 2013572
132013: November 571 2013571
142013: December 570 2013570
15
162012584
1720136,918
18
4a
Excel 2003
Cell Formulas
RangeFormula
B2=LEFT(A2,4)+0
C2=MID(A2,LEN(A2)-4,3)+0
C16=SUMIF($B$2:$B$14,B16,$C$2:$C$14)
C17=SUMIF($B$2:$B$14,B17,$C$2:$C$14)


With

- year extracted or shown in Column B

- amount extracted or shown in Column C

- year criteria in B16

N.B. extract of your data
Copy formulas down and edit ranges as necessary
 
Upvote 0
Edit
- assumption Your data is in Column A

=SUMPRODUCT(--(LEFT($A$2:$A$14,4)+0=B16),(MID($A$2:$A$14,LEN($A$2:$A$14)-4,3)+0))

Edit ranges as necessary; I condensed the sample for the above.
 
Upvote 0
Thanks Dave! Actually, my data is as follows:

Column A: YYYY: month
Column B: EUR

I thought there might be something I could do using SUMIF, DATE and YEAR functions but I couldn't get that to work. I will try the LEFT($A$2:$A$14,4) function to see if that works better (and SUMPRODUCT as I don't know this formula).

I should have probably specified this in the original question (as obviously I am also having troubles posting a table on this forum :)

Cheers,
still dazed, but slightly less confused.
 
Upvote 0
Criteria such as 2012 in D2 etc
Try either of the following

=SUMIF($A$2:$A$100,D2&"*",$B$2)

=SUMPRODUCT(--((LEFT($A$2:$A$14,4)+0)=D2),($B$2:$B$14))


Copy formulas down and edit ranges as necessary in the formula so that all your data is considered.
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

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