The NOMINAL function in Google Sheets is a powerful tool for financial analysis. It computes the annual nominal interest rate when provided with the effective interest rate and the number of compounding periods per year. This function is particularly useful for comparing different interest-bearing investments or understanding the implications of various compounding frequencies on annual rates.
Syntax
NOMINAL(effective_rate, num_periods) - effective_rate: This is the effective annual interest rate, expressed as a decimal.
- num_periods: This represents the number of compounding periods within one year.
Example #1
=NOMINAL(0.05, 12)
This function call calculates the nominal interest rate corresponding to an effective rate of 5% compounded monthly. The result is approximately 0.04861 or 4.86%.
Example #2
=NOMINAL(0.075, 4)
Here, the function determines the nominal rate for an effective rate of 7.5% compounded quarterly. The output would be roughly 0.07321 or 7.32%.
Example #3
=NOMINAL(0.04, 1)
This example calculates the nominal rate for a 4% effective annual interest rate with annual compounding. The result would simply be 0.04 or 4%.
Error handling
- NUM!: Indicates that the effective rate or the number of periods is invalid, such as a negative value.
- VALUE!: This error occurs if the inputs are non-numeric or if the effective rate is not in decimal format.