Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-03-2008, 03:11 PM
Joe
 
Posts: n/a
Help with RATE function

My task is to deteremine an equivalent loan interest rate to a lease payment.

ie: Lease payment term is 60 months, payment is $135.35, funded amount is $5,000

I've been trying to use the RATE function, but need some help entering the data
properly. Every manner I've tried results in a NUM error.

=RATE(60,(133.35),5000) is my last feeble attempt
(I am referrencing cells, I just enered the numbers for clarity.

I tried the payment as a negative after reading another post.
I left out the $ formatting sign, just in case.

What am I missing?
Reply With Quote
  #2 (permalink)  
Old 05-03-2008, 10:41 PM
Ted-im
 
Posts: n/a
Re: Help with RATE function

Try =Rate(60,-135.35,5000)

I'm sure more knowledgeable people will

jump in and give you an explanation.

Hopefully this will get you going.

"Joe" <JoSchmo@yahoo.com> wrote in message
news:87so14prt1phq92dn1qr6tb081cgeelf46@4ax.com...
> My task is to deteremine an equivalent loan interest rate to a lease
> payment.
>
> ie: Lease payment term is 60 months, payment is $135.35, funded amount is
> $5,000
>
> I've been trying to use the RATE function, but need some help entering the
> data
> properly. Every manner I've tried results in a NUM error.
>
> =RATE(60,(133.35),5000) is my last feeble attempt
> (I am referrencing cells, I just enered the numbers for clarity.
>
> I tried the payment as a negative after reading another post.
> I left out the $ formatting sign, just in case.
>
> What am I missing?



Reply With Quote
  #3 (permalink)  
Old 05-03-2008, 11:05 PM
Joe
 
Posts: n/a
Re: Help with RATE function

Getting closer.

The negative payment produces a real result, but the rate calculated is 1.5% and
it should be about 19%

Thanks!


On Sat, 3 May 2008 14:41:16 -0700, "Ted-im" <ted-im@sbcglobal.net> wrote:

>Try =Rate(60,-135.35,5000)
>
>I'm sure more knowledgeable people will
>jump in and give you an explanation.
>
>Hopefully this will get you going.
>
>"Joe" <JoSchmo@yahoo.com> wrote in message
>news:87so14prt1phq92dn1qr6tb081cgeelf46@4ax.com.. .
>> My task is to deteremine an equivalent loan interest rate to a lease
>> payment.
>>
>> ie: Lease payment term is 60 months, payment is $135.35, funded amount is
>> $5,000
>>
>> I've been trying to use the RATE function, but need some help entering the
>> data
>> properly. Every manner I've tried results in a NUM error.
>>
>> =RATE(60,(133.35),5000) is my last feeble attempt
>> (I am referrencing cells, I just enered the numbers for clarity.
>>
>> I tried the payment as a negative after reading another post.
>> I left out the $ formatting sign, just in case.
>>
>> What am I missing?

>


Reply With Quote
  #4 (permalink)  
Old 05-04-2008, 12:13 AM
Jim Cone
 
Posts: n/a
Re: Help with RATE function


It gives me 1.7525 for a monthly rate.
Multiplied by 12 = 21.03%
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)


"Joe" <JoSchmo@yahoo.com>
wrote in message
Getting closer.
The negative payment produces a real result,
but the rate calculated is 1.5% and it should be about 19%
Thanks!


On Sat, 3 May 2008 14:41:16 -0700, "
Ted-im" <ted-im@sbcglobal.net> wrote:
>Try =Rate(60,-135.35,5000)>
>I'm sure more knowledgeable people will
>jump in and give you an explanation.>
>Hopefully this will get you going.


Reply With Quote
  #5 (permalink)  
Old 05-04-2008, 02:04 AM
joeu2004
 
Posts: n/a
Re: Help with RATE function

On May 3, 1:41*pm, "Ted-im" <ted...@sbcglobal.net> wrote:
> Try =Rate(60,-135.35,5000)
> I'm sure more knowledgeable people will
> jump in and give you an explanation.


When using the financial functions, inflows and outflows must have
opposite signs. Which is which depends on your point of view (lender
or borrower). So you could also write RATE(60,135.35,-5000).

It should also be noted that RATE returns the __periodic__ interest
rate -- the rate per each of the 60 periods. If the period is not in
years, we have to annualize the rate. Typically, multiply by 12 to
convert a monthly rate to an annual interest rate, at least for US
loans.
Reply With Quote
  #6 (permalink)  
Old 05-04-2008, 04:03 AM
joeu2004
 
Posts: n/a
Re: Help with RATE function

On May 3, 2:05*pm, Joe <JoSc...@yahoo.com> wrote:
> Getting closer.
> The negative payment produces a real result, but the
> rate calculated is 1.5% and it should be about 19%


If you are saying that you already know that the lease interest rate
should be about 19% and you continue to have trouble getting that
result even with 12*RATE(60,-135.35,5000), the answer might lie in the
explanation on the following web pages:

http://www.leaseguide.com/lease08.htm
http://www.leaseguide.com/lease09.htm
Reply With Quote
  #7 (permalink)  
Old 05-04-2008, 04:32 AM
Ted-im
 
Posts: n/a
Re: Help with RATE function

Thanks for your explanation
Ted
"joeu2004" <joeu2004@hotmail.com> wrote in message
news:a10b37ac-ed44-425d-96d6-60e3b8760c84@y18g2000pre.googlegroups.com...
On May 3, 1:41 pm, "Ted-im" <ted...@sbcglobal.net> wrote:
> Try =Rate(60,-135.35,5000)
> I'm sure more knowledgeable people will
> jump in and give you an explanation.


When using the financial functions, inflows and outflows must have
opposite signs. Which is which depends on your point of view (lender
or borrower). So you could also write RATE(60,135.35,-5000).

It should also be noted that RATE returns the __periodic__ interest
rate -- the rate per each of the 60 periods. If the period is not in
years, we have to annualize the rate. Typically, multiply by 12 to
convert a monthly rate to an annual interest rate, at least for US
loans.


Reply With Quote
  #8 (permalink)  
Old 05-04-2008, 08:50 PM
Joe
 
Posts: n/a
Re: Help with RATE function

On Sat, 3 May 2008 20:03:15 -0700 (PDT), joeu2004 <joeu2004@hotmail.com> wrote:

>On May 3, 2:05?pm, Joe <JoSc...@yahoo.com> wrote:
>> Getting closer.
>> The negative payment produces a real result, but the
>> rate calculated is 1.5% and it should be about 19%

>
>If you are saying that you already know that the lease interest rate
>should be about 19% and you continue to have trouble getting that
>result even with 12*RATE(60,-135.35,5000), the answer might lie in the
>explanation on the following web pages:


I just did some manual regression to find the equivalent interest rate, but I'm
building a spreadsheet to relate money factors to interest rates and evaluate
the value to the dealers and their customers. I've found I'm far better in sales
than I am in finance, Excel can be tough when you use it sparingly as I do

>
>http://www.leaseguide.com/lease08.htm
>http://www.leaseguide.com/lease09.htm


Yep, the dealers will bang you when they can. They got me once about 10 years
ago, but today I'm hip to their tricks

I need to "back out" the interest rate from a table of money factors or buy
rates that a lease company has provided. The reason is to explain and compare
lease costs to dealers we're trying setup leasing programs for. The lender has
given us the rate tables, but I prefer to have more understanding.

Thanks all!
Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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



All times are GMT. The time now is 04:35 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Car Finance | Auto Loans | Remortgaging | Online Advertising | Personal Loans



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114