MS Excel: NOMINAL function to calculate annual rate
- Fakhriddinbek
- Apr 28
- 2 min read

The NOMINAL function in Excel helps you calculate the nominal annual interest rate when you know the effective interest rate and the number of compounding periods per year.
Effective Rate = Actual rate you earn (includes compounding)
Nominal Rate = Stated rate (ignores compounding)
In simple terms: NOMINAL gives you the “advertised” annual interest rate based on how many times the interest is compounded.
NOMINAL Function Syntax
NOMINAL(effect_rate, npery)
Argument | Description |
effect_rate | Required. The effective annual interest rate. |
npery | Required. The number of compounding periods per year (like 12 for monthly, 4 for quarterly). |
Both arguments must be positive numbers.
Simple Example
Imagine a savings account offers:
Effective Rate = 6% annually
Compounded = 12 times a year (monthly)
Formula:
=NOMINAL(6%, 12)
Result: 5.84%
This means the nominal annual interest rate is 5.84% if the account is compounded monthly.
Tabular Example
Effective Rate | Compounding Periods (npery) | Formula | Nominal Rate (Result) |
8% | 4 (Quarterly) | =NOMINAL(8%, 4) | 7.84% |
10% | 12 (Monthly) | =NOMINAL(10%, 12) | 9.56% |
5% | 2 (Semi-Annually) | =NOMINAL(5%, 2) | 4.88% |
How to Use NOMINAL in Real Life
📈 Loans — Know the real interest rate banks are quoting.
💰 Savings — Understand the true rate your money grows.
🏦 Investments — Compare different financial products fairly.
Common Mistakes and Tips
Tip or Mistake | Description |
Effective rate must be > 0 | If zero or negative, Excel gives a #NUM! error. |
npery must be ≥ 1 | If you put 0 or negative numbers, you’ll get an error. |
Enter rates as decimals | Use 0.06 for 6%, 0.08 for 8%, etc. |
NOMINAL vs EFFECT | NOMINAL finds the nominal rate; EFFECT finds the effective rate (they are opposite functions). |
NOMINAL vs EFFECT Functions
Function | Purpose |
NOMINAL | Calculates nominal rate from effective rate |
EFFECT | Calculates effective rate from nominal rate |
They are often used together when analyzing loans or investments.
Final Thoughts
The NOMINAL function is crucial for understanding the difference between the "advertised" interest rate and the real-world earnings when compounding is involved. It’s an essential tool for financial analysts, students, and everyday savers who want to make smarter financial decisions.
Comments