Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Formula call for variables. I've look all over and can't find what these variables are and what values they're supposed to represent.

RATE($nper, $pmt, $pv, $fv = 0.0, $type = 0, $guess = 0.1)

Is anyone familiar with this function? Do you know what values the variables are meant to represent?

share|improve this question
I'm not familiar with phpexcel, but surely there are docs – Madbreaks Jan 18 at 18:19
@MarcB : Please see the question title. Visit this website if you're unfamiliar with the code. phpexcel.codeplex.com Or, if you're unfamiliar with the difference between server scripting and magic, this link: en.wikipedia.org/wiki/Magic_(paranormal) – tPlummer Jan 18 at 18:20
tplummer: phpexcel is simply a php library to manipulate excel files. if you're embedding a spreadsheet function, it doesn't matter WHAT library you're doing it with - the library cannot embed a function that excel itself doesn't support. – Marc B Jan 18 at 18:30
@MarcB: Excel supports RATE(). I'm using it. Just so we're on the same page... stackoverflow.com/questions/3198939/… – tPlummer Jan 18 at 18:34
and that's what I'm saying as well... you should have gone straight to the Excel documentation instead of asking about phpexcel here. – Marc B Jan 18 at 19:13
show 1 more comment

2 Answers

up vote 3 down vote accepted

From the Excel help file:

RATE(nper,pmt,pv,fv,type,guess)

For a complete description of the arguments nper, pmt, pv, fv, and type, see PV.

  • Nper - is the total number of payment periods in an annuity.
  • Pmt - is the payment made each period and cannot change over the life of the annuity. Typically, pmt includes principal and interest but no other fees or taxes. If pmt is omitted, you must include the fv argument.
  • Pv - is the present value — the total amount that a series of future payments is worth now.
  • Fv - is the future value, or a cash balance you want to attain after the last payment is made. If fv is omitted, it is assumed to be 0 (the future value of a loan, for example, is 0).
  • Type - is the number 0 or 1 and indicates when payments are due.

    Set type equal to the following if payments are due:

    • 0 or omitted - At the end of the period
    • 1 - At the beginning of the period
  • Guess - is your guess for what the rate will be.

    If you omit guess, it is assumed to be 10 percent.
    If RATE does not converge, try different values for guess. RATE usually converges if guess is between 0 and 1.

Remark

Make sure that you are consistent about the units you use for specifying guess and nper. If you make monthly payments on a four-year loan at 12 percent annual interest, use 12%/12 for guess and 4*12 for nper. If you make annual payments on the same loan, use 12% for guess and 4 for nper

share|improve this answer
Should've figured it used the same variables as the Excel function since it's meant to be a clone. Thanks! – tPlummer Jan 18 at 18:21
Please don't just blindly copy/paste from a manual, make sure your data is presentable. I've put exactly 2 minutes in editing this post, you should do it yourself next time. – Madara Uchiha Jan 18 at 18:24
2  
@MadaraUchiha: while yours certainly looks nicer, I felt that the text was readable enough, especially since most people wanting to use Excel functions have the Excel manual available to them. If you have a look at my posting history you'll see that I spend quite a bit of time editing for presentation. I very rarely "blindly" paste in anything. Thanks for prettifying my post, but please don't assume I posted without thought. – dnagirl Jan 18 at 18:30
It was just want I needed. Thanks! – tPlummer Jan 18 at 18:56

Excel Rate function assumes that interest compounding is periodic whereas in finance and banking the interest rate is compounded continuously which means that interest is paid or charged on ever small portion of time

Here is a variant of this Excel Rate function that allows you to specify whether interest should be compounded discretely or continuously

=tadRATE ( NPER, PMT, PV, FV, type, guess, compounding )

the last arguments passed to this function accepts a value of 0 or omitted for periodic compounding of interest and a value of 1 for continuous compounding of interest

You may want to try out the function by downloading the TADXL add-in at the following links where the first one is for 32-bit Excel and the second one is for 64-bit Excel

32 Bit Excel 32_bit_tadxl_v_1.0_en_trial.zip

64 Bit Excel 64_bit_tadxl_v_1.0_en_trial.zip

The interest rate is lower when interest is compounded continuously as opposed to when interest is compounded discretely (periodically).

share|improve this answer
thanks for the info. The question was actually regarding a php plug-in that mimics the excell RATE() function. – tPlummer Jan 22 at 17:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.