Explanation
The Effective Annual Rate (EAR) is the interest rate after factoring in compounding. In other words, the EAR is the rate actually earned due to the effect of compounding more frequently than once a year (annually).
The EFFECT function calculates the effective annual interest rate based on the nominal annual interest rate, and the number of compounding periods per year.
To demonstrate how this works, the table shown in the example is set up with various compounding periods in column C. The nominal interest rate is provided in cell H4, which is the named range "rate".
The formula in D5 is:
=EFFECT(rate,C5)
Because named ranges behave like absolute references, this formula can simply be copied down the table. The EFFECT function returns the calculated EAR for each of the given periods.
Manual check
The generic formula for calculating EAR (in Excel formula syntax) is:
=(1+i/n)^n–1
where n stands for periods, and i is the stated interest rate. This formula is used to check the results from EFFECT. In E5, the formula is:
=(1+rate/C5)^C5-1
When this formula is copied down the table, the results in columns D and E match: