Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Financial formula

Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Financial formula

How often is interest credited? Assuming every month, you want the FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75 months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09. If you are
actually going to receive interest for this period, use the following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Financial formula

Hi Fred,

Thanks for the formula, it worked very well. However, I tried replacing the
numbers with cell references and it does not tally.

=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 returns $413.37.

I changed your formula to :
=FV(A2/12,A4,0,-A1)*(1+A5/365*A2%)-A1 and it returns $409.16

Start date in cell B5, end date in cell B6)

A1 : Principal amount = 1000
A2 : Interest = 5.5
A3 : Loan period (I used formula =DATEDIF(B5,B6,"y") & " yrs, " &
DATEDIF(B5,B6,"ym") & " mths, " & DATEDIF(B5,B6,"md") & " days" to work out
the yrs/mth/date)
A4 : Loan period in mths (I used formula
=(YEAR(B6)*12+MONTH(B6))-(YEAR(B5)*12+MONTH(B5)) to work out the mths)
A5 : Balance days (I used =DATEDIF(B5,B6,"md") to work out balance days)

Cell A3 is just to check that years/mths/days are correct.

Where did I go wrong?

Regards
Karen


"Fred Smith" wrote:

How often is interest credited? Assuming every month, you want the FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75 months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09. If you are
actually going to receive interest for this period, use the following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Financial formula

Karen,

A2 in %..Try

=FV(A2%/12,A4,0,-A1)*(1+A5/365*A2%)-A1

If this post helps click Yes
---------------
Jacob Skaria


"Karen" wrote:

Hi Fred,

Thanks for the formula, it worked very well. However, I tried replacing the
numbers with cell references and it does not tally.

=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 returns $413.37.

I changed your formula to :
=FV(A2/12,A4,0,-A1)*(1+A5/365*A2%)-A1 and it returns $409.16

Start date in cell B5, end date in cell B6)

A1 : Principal amount = 1000
A2 : Interest = 5.5
A3 : Loan period (I used formula =DATEDIF(B5,B6,"y") & " yrs, " &
DATEDIF(B5,B6,"ym") & " mths, " & DATEDIF(B5,B6,"md") & " days" to work out
the yrs/mth/date)
A4 : Loan period in mths (I used formula
=(YEAR(B6)*12+MONTH(B6))-(YEAR(B5)*12+MONTH(B5)) to work out the mths)
A5 : Balance days (I used =DATEDIF(B5,B6,"md") to work out balance days)

Cell A3 is just to check that years/mths/days are correct.

Where did I go wrong?

Regards
Karen


"Fred Smith" wrote:

How often is interest credited? Assuming every month, you want the FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75 months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09. If you are
actually going to receive interest for this period, use the following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Financial formula

Hi Jacob

Thanks to your tip, I found out what's the problem. I removed the % sign as
A2 is already in percentage.

Regards
Karen

"Jacob Skaria" wrote:

Karen,

A2 in %..Try

=FV(A2%/12,A4,0,-A1)*(1+A5/365*A2%)-A1

If this post helps click Yes
---------------
Jacob Skaria


"Karen" wrote:

Hi Fred,

Thanks for the formula, it worked very well. However, I tried replacing the
numbers with cell references and it does not tally.

=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 returns $413.37.

I changed your formula to :
=FV(A2/12,A4,0,-A1)*(1+A5/365*A2%)-A1 and it returns $409.16

Start date in cell B5, end date in cell B6)

A1 : Principal amount = 1000
A2 : Interest = 5.5
A3 : Loan period (I used formula =DATEDIF(B5,B6,"y") & " yrs, " &
DATEDIF(B5,B6,"ym") & " mths, " & DATEDIF(B5,B6,"md") & " days" to work out
the yrs/mth/date)
A4 : Loan period in mths (I used formula
=(YEAR(B6)*12+MONTH(B6))-(YEAR(B5)*12+MONTH(B5)) to work out the mths)
A5 : Balance days (I used =DATEDIF(B5,B6,"md") to work out balance days)

Cell A3 is just to check that years/mths/days are correct.

Where did I go wrong?

Regards
Karen


"Fred Smith" wrote:

How often is interest credited? Assuming every month, you want the FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75 months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09. If you are
actually going to receive interest for this period, use the following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Financial formula

Now I need to calculate daily compound interest. Can I use this formula?
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 or is there another formula for
daily compound interest?

Thanks.


"Karen" wrote:

Hi Jacob

Thanks to your tip, I found out what's the problem. I removed the % sign as
A2 is already in percentage.

Regards
Karen

"Jacob Skaria" wrote:

Karen,

A2 in %..Try

=FV(A2%/12,A4,0,-A1)*(1+A5/365*A2%)-A1

If this post helps click Yes
---------------
Jacob Skaria


"Karen" wrote:

Hi Fred,

Thanks for the formula, it worked very well. However, I tried replacing the
numbers with cell references and it does not tally.

=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 returns $413.37.

I changed your formula to :
=FV(A2/12,A4,0,-A1)*(1+A5/365*A2%)-A1 and it returns $409.16

Start date in cell B5, end date in cell B6)

A1 : Principal amount = 1000
A2 : Interest = 5.5
A3 : Loan period (I used formula =DATEDIF(B5,B6,"y") & " yrs, " &
DATEDIF(B5,B6,"ym") & " mths, " & DATEDIF(B5,B6,"md") & " days" to work out
the yrs/mth/date)
A4 : Loan period in mths (I used formula
=(YEAR(B6)*12+MONTH(B6))-(YEAR(B5)*12+MONTH(B5)) to work out the mths)
A5 : Balance days (I used =DATEDIF(B5,B6,"md") to work out balance days)

Cell A3 is just to check that years/mths/days are correct.

Where did I go wrong?

Regards
Karen


"Fred Smith" wrote:

How often is interest credited? Assuming every month, you want the FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75 months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09. If you are
actually going to receive interest for this period, use the following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is 5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Financial formula

No. This formula assumes monthly compounding (that's why the term was
specified in months). For daily compounding, you specify the term in days,
and make the corresponding adjustment to the interest rate, as in:

=fv(a2/365,b6-b5,0,-a1)-a1

Regards,
Fred.

"Karen" wrote in message
...
Now I need to calculate daily compound interest. Can I use this formula?
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 or is there another formula
for
daily compound interest?

Thanks.


"Karen" wrote:

Hi Jacob

Thanks to your tip, I found out what's the problem. I removed the % sign
as
A2 is already in percentage.

Regards
Karen

"Jacob Skaria" wrote:

Karen,

A2 in %..Try

=FV(A2%/12,A4,0,-A1)*(1+A5/365*A2%)-A1

If this post helps click Yes
---------------
Jacob Skaria


"Karen" wrote:

Hi Fred,

Thanks for the formula, it worked very well. However, I tried
replacing the
numbers with cell references and it does not tally.

=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000 returns $413.37.

I changed your formula to :
=FV(A2/12,A4,0,-A1)*(1+A5/365*A2%)-A1 and it returns $409.16

Start date in cell B5, end date in cell B6)

A1 : Principal amount = 1000
A2 : Interest = 5.5
A3 : Loan period (I used formula =DATEDIF(B5,B6,"y") & " yrs, " &
DATEDIF(B5,B6,"ym") & " mths, " & DATEDIF(B5,B6,"md") & " days" to
work out
the yrs/mth/date)
A4 : Loan period in mths (I used formula
=(YEAR(B6)*12+MONTH(B6))-(YEAR(B5)*12+MONTH(B5)) to work out the
mths)
A5 : Balance days (I used =DATEDIF(B5,B6,"md") to work out balance
days)

Cell A3 is just to check that years/mths/days are correct.

Where did I go wrong?

Regards
Karen


"Fred Smith" wrote:

How often is interest credited? Assuming every month, you want the
FV
function:
=fv(5.5%/12,75,0,-1000)
=1409.12

This is the amount you will have in the bank at the end of the 75
months. Do
determine, the interest earned, subtract the original principal.

This doesn't account for the 20 days from 10 Jun 09 to 30 Jun 09.
If you are
actually going to receive interest for this period, use the
following:
=fv(5.5%/12,75,0,-1000)*(1+20/365*5.5%)-1000

Regards,
Fred.

"Karen" wrote in message
...
Need some help on a financial formula :

Let's say I have $1,000 in an account. The interest rate is
5.5%pa. If
start
date is 10 Mar 2003 and end date is 30 June 2009, interest is
added on to
the
principal. How much interest will be generated at the end date?

What formula can I use?

Thanks.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
preparation of financial performance and financial position ? kay New Users to Excel 1 March 19th 09 07:22 AM
Want to display financial formula result... not the formula Army Guy[_2_] Excel Worksheet Functions 2 September 5th 07 09:26 AM
Drop TB into Financial Statements formula? Ang Excel Worksheet Functions 2 January 14th 07 10:33 PM
Which financial formula do I use? Ted-im New Users to Excel 0 October 10th 06 06:58 AM
Financial formula for Discounting Cashflows Jeff Excel Discussion (Misc queries) 2 February 15th 05 09:28 PM


All times are GMT +1. The time now is 02:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"