The NOMINAL function in Excel is designed to calculate the annual nominal interest rate based on a given effective interest rate and the number of compounding periods per year. This function is particularly useful for financial analysis, helping users understand the nominal rate that corresponds to an effective rate over multiple compounding periods.
Syntax
NOMINAL(effect_rate, npery)
- effect_rate: The effective interest rate, expressed as a decimal. For instance, a 5% effective rate would be written as 0.05.
- npery: The number of compounding periods in one year. For example, if interest is compounded monthly, this value would be 12.
Example #1
=NOMINAL(0.05, 12)
The function calculates the nominal annual interest rate for a 5% effective rate compounded monthly. The result would be approximately 0.0488 or 4.88%.
Example #2
=NOMINAL(0.075, 4)
This function computes the nominal interest rate for a 7.5% effective rate compounded quarterly. The output would be roughly 0.0733 or 7.33%.
Example #3
=NOMINAL(0.03, 365)
Here, the function provides the nominal interest rate for a 3% effective rate that compounds daily. The result is approximately 0.0294 or 2.94%.
Error handling
- VALUE!: This error occurs when the input values for either effect_rate or npery are non-numeric.
- NUM!: This indicates that the npery value is less than 1, which is an invalid input for compounding periods.