
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 an effective annual rate of 5.12% into the nominal annual rate that would produce it under monthly compounding. This is the reverse of what EFFECT does.
The example is useful because it answers a common pricing question: if the real yearly result is 5.12%, what advertised nominal rate matches that when compounding happens monthly?
=NOMINAL(0.0512,12)
Find the nominal rate if the effective rate is 5.12% with monthly compounding (12).
Convert the same 5.12% effective rate using a daily compounding assumption. Because compounding happens more often, the matching nominal rate will be a bit lower than in the monthly case.
This makes the example good for comparison. It shows that the compounding frequency changes the nominal rate needed to produce the same effective result.
=NOMINAL(0.0512,365)
Calculate nominal if the effective rate is 5.12% with daily compounding (365).
Check whether the converted nominal rate stays below your chosen limit of 5.1%. The formula turns the conversion result into a direct TRUE or FALSE rule.
That is helpful in product reviews or compliance sheets where the real question is not just the nominal rate itself, but whether it stays inside an allowed range.
=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).
Measure the gap between the effective annual rate and the nominal annual rate that corresponds to it. This difference exists because compounding adds extra return over the year.
The example helps explain why the two rates are not interchangeable. Even when they describe the same product, they are different ways of expressing performance.
=0.0512-NOMINAL(0.0512,12)
Find the "Effective Bonus" by subtracting the nominal rate from 0.0512.
NOMINAL is useful when you already know the effective annual rate and need to turn it back into the quoted nominal rate for a given compounding pattern. In this lesson, that meant converting APY-style numbers, comparing monthly and daily setups, checking thresholds, and measuring the gap between effective and nominal rates.
The main point is that the compounding frequency changes the answer. So the same effective rate can lead to different nominal rates depending on how often compounding happens. That is why the frequency setting matters just as much as the rate itself.
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