RATE Excel Function
For example, suppose we have a dataset of the 5-year loan of $25,000 in cell B1 with monthly payments of $1000 in cell B2 has 60 periods in cell B3. We need to find the interest rate on the student loan. In such a scenario, we can use the RATE function in Excel:
=RATE(B3,B2,-B1)*12
=4.1%.
RATE Formula in Excel
Explanation
Compulsory Parameter:
- Nper: Nper is the total number of the period for the loan/investment amount to be paid. For example, considering the 5 years terms means 5*12=60.Pmt: The fixed amount paid per period cannot be changed during the annuity’s life.Pv: Pv is the total loan amount or present value.
Optional Parameter:
- [Fv]: It is also called the future value and is optional in the RATE function in Excel. And if not passed in this function, it will be considered zero.[Type]: It can be omitted from the RATE function in Excel and used as 1 if payments are due at the beginning of the period and considered as 0 in case the payments are due at the end of the period.[Guess]: It is also an optional parameter; if omitted, it is assumed as 10%.
How to Use the RATE Function in Excel?
The RATE function in Excel is very simple and easy to use and can be used as a worksheet function and VBA function. Therefore, this function is used as a worksheet function.
Example #1
Suppose the investment amount is 25,000, and the period is 5 years. Here the number of payments nperNperNPER, commonly known as the number of payment periods for a loan, is a financial term and an inbuilt financial function in Excel that can be used to calculate NPER for any loan. This formula takes rate, payment made, present value and future value as input from a user.read more will be =5*12=60 payments in total, and we have considered 500 as a fixed monthly payment and then calculated the interest rate using the RATE function in Excel.
Output will be: =RATE (C5, C4,-C3)*12 = 7.4%
Example #2
Let us consider another example wherein the interest rate per payment period on a 5,000 investment amount where monthly payments of 250 are made for 2 years so period will be=12*2=24. Here we have considered that all payments are made at the beginning of the period, so the type will be 1.
Calculation of interest rate are as follows:
=RATE(C13,-C12, C11,, 1) output will be: 1.655%
Example #3
Let us take another example for weekly payment. This next example returns the interest rate on a loan amount of 8,000 where weekly payments of 700 are made for 4 years. Here, we have considered that all payments are made at the end of the period so that type will be 0 here.
The output will be: =RATE(C20,-C19, C18,, 0) = 8.750%.
Example #4
In the final example, we have considered that the loan amount will be 8,000, and annual payments of 950 are made for 10 years. Here, we assume that all the payments are made at the end of the period, then the type will be 0.
The output will be: =RATE(C28,-C27, C26) =3.253%
RATE in Excel is used as a VBA functionVBA FunctionVBA functions serve the primary purpose to carry out specific calculations and to return a value. Therefore, in VBA, we use syntax to specify the parameters and data type while defining the function. Such functions are called user-defined functions.read more.
Dim Rate_value As Double
Rate_value = Rate(10*1, -950, 800)
Msgbox Rate_value
And output will be 0.3253
Things to Remember
Below are the few error details that can come in RATE in Excel if wrong arguments are passed in the RATE function in Excel.
Error handling #NUM!: If the interest RATE does not converge to 0.0000001 after 20 iterations, then the RATE excel function returns the #NUM! Error value.
Error handling #VALUE!: The RATE Excel function through a #VALUE! Error when any non-numeric value has been passed in the RATE formula in the Excel argument.
We must convert the number of periods to month or quarter per your requirement.If the output of this function seems like 0, then there is no decimal value, then we must format the cell value to percentage format.
Recommended Articles
This article is a guide to Rate Function in Excel. Here, we discuss the RATE formula in Excel and how to use the RATE function, along with Excel examples and downloadable Excel templates. You may also look at these useful functions in Excel: –
- Negative Interest Rate MeaningNegative Interest Rate MeaningWhen the interest rate falls below 0 percent, we have a negative interest scenario. This implies that banks will charge you interest for keeping your money with them. It is more common during periods of extreme deflation.read moreExcel Record MacrosExcel Record MacrosRecording macros is a method whereby excel stores the tasks performed by the user. Every time a macro is run, these exact actions are performed automatically. Macros are created in either the View tab (under the “macros” drop-down) or the Developer tab of Excel.
- read moreMODE Excel FunctionMONTH Excel FunctionMONTH Excel FunctionThe Month Function is a date function that determines the month for a given date in date format. It takes an argument in a date format and displays the result in integer format.read moreInsert (Embed) an Object in ExcelInsert (Embed) An Object In ExcelIn Microsoft Excel, the “Object Insert” option allows a user to insert an external object into a worksheet. Embedding generally means inserting an object from another software (Word, PDF, etc.) into an Excel worksheet.read more