You have two problems. First your parameters to the Rate function are not
correct. Why would you specify PV as 300*(50%)? That equals 150, which is
definitely not your PV. Just enter the loan amount of 300. The total amount
payable is a red herring, which you don't have to enter. Rate knows the total
amount by multiplying the term by the payment. Once corrected, you will find:
=rate(30,-15,300) = 2.84%
Remember, as in all financial functions, this is the *periodic* interest rate.
Because your payment period is weekly, you have to convert this to an annual
rate. There are several methods, but I prefer the FV function. You need to ask
the question, if I'm being charge 2.84%/week interest, how much will I owe in a
year if I make no payments? That will tell you the APR. The formula you need is:
=fv(rate(30,-15,300),52,0,-1)-1 =329.98%

Signature
Regards,
Fred
> Hi,
>
[quoted text clipped - 14 lines]
> TIA
> Jonathan
Jonathan Rigley - 28 Oct 2006 15:25 GMT
Hi Fred,
Thank you, I think I did get it wrapped around me neck a little bit !
Thanks for your time and the explanation.
Jonathan
> You have two problems. First your parameters to the Rate function are not
> correct. Why would you specify PV as 300*(50%)? That equals 150, which is
[quoted text clipped - 30 lines]
> > TIA
> > Jonathan