UtterAccess.com
X   Site Message
(Message will auto close in 2 seconds)

Welcome Guest ( Log In | Register )

> Rate Of Interest, Office 2007    
 
   
pat2mat2003
post Apr 4 2012, 03:58 AM
Post #1

UtterAccess Addict
Posts: 220



If I save 1250 every month for 48 months and at the end I received 79000 from the Bank. what is the rate of interest i've received. (simple/compounded)

Pat.
Go to the top of the page
 
+
 
Start new topic
Replies (1 - 2)
mtn
post Apr 4 2012, 05:45 AM
Post #2

UtterAccess Addict
Posts: 125



I guess this should be it....

Savings = 1, 250
Tenure = 48 months
Total Savings = Savings x Tenure = 60, 000
Future Value = 79, 000
Interest Amount = Future Value - Total Savings = 19,000

Interest Rate (%) = Interest Amount (19,000) x 100/Total Savings (60,000)
= 31.67%


To check the accuracy

Take 31.67% of 1, 250 and that gives 395.88 as the interest amount per month. Multiply that by 48 months and it gives you 19,002 as the accumulated interest. Add this to your Total Savings and it will give you 79,002.

Then an off the air code should be something like this but not tested:

CODE
Function GetInterestRate(strSavings As Double, _
                        intmonths As Integer, _
                        strFutureValue As Double) As String

    Dim strTotalSavings As Double
    Dim strInterestAmount As Double
    Dim strTempVal As Double

    strTotalSavings = strSavings * intmonths
    strInterestAmount = strFutureValue - strTotalSavings
    strTempVal = (strInterestAmount * 100) / strTotalSavings

    GetInterestRate = strTempVal & "%"

End Function


With a quick test from your immediate window, you should get:

31.6666666666667%

from

? GetInterestRate(1250, 48, 79000)


This post has been edited by mtn: Apr 4 2012, 05:47 AM
Go to the top of the page
 
+
pat2mat2003
post Apr 4 2012, 06:34 AM
Post #3

UtterAccess Addict
Posts: 220



thank you.
Go to the top of the page
 
+

Thank you for your support! Reply to this topicStart new topic

Jump To Forum:
 



RSS Go to Top  ·  Lo-Fi Version Time is now: 20th May 2013 - 03:38 AM