
Calculate the nominal annual interest rate from an effective annual rate and a compounding frequency. NOMINAL is useful when APY-style rates need to be converted into nominal quote form.
The Excel NOMINAL function returns the nominal annual interest rate when you already know the effective annual rate and the number of compounding periods per year. This is useful when you need to translate APY-style results into nominal quote style.
In practice, banks and product sheets often show nominal and effective rates differently. NOMINAL helps you standardize those labels so your comparisons are fair and your downstream formulas use the correct convention.
This function is the inverse direction of EFFECT. If EFFECT moves nominal to effective, NOMINAL moves effective back to nominal under the same compounding frequency.
Converts effective annual rate into nominal annual rate for a chosen compounding frequency.
Returns a decimal rate such as 0.0500, usually formatted as percent.
=NOMINAL(effect_rate, npery)
effect_rate is the effective annual rate, and npery is compounding periods per year (for example 12 for monthly, 365 for daily).
Excel truncates npery to an integer. That means values like 12.9 are treated as 12, so use explicit whole numbers to avoid silent interpretation changes.
Error behavior is important for audits: if inputs are non-numeric, NOMINAL returns #VALUE!. If effect_rate <= 0 or npery < 1, it returns #NUM!.
Checks before finalizing output:
npery when comparing with EFFECT inversion checks.NOMINAL is a conversion function, not a payment or valuation function.
| Function | Main Role | Best Use |
|---|---|---|
NOMINAL |
Convert effective annual rate to nominal annual rate | Rate-label normalization and quoting |
EFFECT |
Convert nominal annual rate to effective annual rate | APY-style comparison under compounding |
RATE |
Solve periodic rate from payment/value model | Loan/savings structure solving |
RRI |
Equivalent growth rate from endpoints | CAGR-style summary analysis |
Short rule: use NOMINAL/EFFECT for convention conversion, and use RATE/RRI when solving model behavior from cash structure.
A practical workflow:
This is helpful in pricing reviews where product sheets mix compounding conventions. Normalizing first prevents misleading comparisons.
You can also verify conversion consistency by applying EFFECT back to the NOMINAL result with the same npery.
Convert effective 5.12% into nominal rate with monthly compounding.
=NOMINAL(0.0512,12)
Find the nominal rate if the effective rate is 5.12% with monthly compounding (12). Formula: =NOMINAL(0.0512, 12).
Convert effective 5.12% using daily compounding assumption.
=NOMINAL(0.0512,365)
Calculate nominal if the effective rate is 5.12% with daily compounding (365). Formula: =NOMINAL(0.0512, 365).
Check whether converted nominal rate is below your limit.
=NOMINAL(0.0512,12)<0.051
Check if the nominal rate for a 5.12% effective rate (12 mo) is less than 5.1% (0.051). Formula: =NOMINAL(0.0512, 12) < 0.051.
Measure the gap between effective and nominal representations.
=0.0512-NOMINAL(0.0512,12)
Find the "Effective Bonus" by subtracting the nominal rate from 0.0512. Formula: =0.0512 - NOMINAL(0.0512, 12).
NOMINAL converts effective annual rate into nominal annual rate.=NOMINAL(effect_rate,npery) with intentional compounding frequency.npery is truncated to integer; invalid inputs can trigger #NUM! or #VALUE!.Tell your friends about this post