Formulas and Functions Help
- Welcome
-
- ACCRINT
- ACCRINTM
- BONDDURATION
- BONDMDURATION
- COUPDAYBS
- COUPDAYS
- COUPDAYSNC
- COUPNUM
- CUMIPMT
- CUMPRINC
- CURRENCY
- CURRENCYCODE
- CURRENCYCONVERT
- CURRENCYH
- DB
- DDB
- DISC
- EFFECT
- FV
- INTRATE
- IPMT
- IRR
- ISPMT
- MIRR
- NOMINAL
- NPER
- NPV
- PMT
- PPMT
- PRICE
- PRICEDISC
- PRICEMAT
- PV
- RATE
- RECEIVED
- SLN
- STOCK
- STOCKH
- SYD
- VDB
- XIRR
- XNPV
- YIELD
- YIELDDISC
- YIELDMAT
-
- AVEDEV
- AVERAGE
- AVERAGEA
- AVERAGEIF
- AVERAGEIFS
- BETADIST
- BETAINV
- BINOMDIST
- CHIDIST
- CHIINV
- CHITEST
- CONFIDENCE
- CORREL
- COUNT
- COUNTA
- COUNTBLANK
- COUNTIF
- COUNTIFS
- COVAR
- CRITBINOM
- DEVSQ
- EXPONDIST
- FDIST
- FINV
- FORECAST
- FREQUENCY
- GAMMADIST
- GAMMAINV
- GAMMALN
- GEOMEAN
- HARMEAN
- INTERCEPT
- LARGE
- LINEST
- LOGINV
- LOGNORMDIST
- MAX
- MAXA
- MAXIFS
- MEDIAN
- MIN
- MINA
- MINIFS
- MODE
- NEGBINOMDIST
- NORMDIST
- NORMINV
- NORMSDIST
- NORMSINV
- PERCENTILE
- PERCENTRANK
- PERMUT
- POISSON
- PROB
- QUARTILE
- RANK
- SLOPE
- SMALL
- STANDARDIZE
- STDEV
- STDEVA
- STDEVP
- STDEVPA
- TDIST
- TINV
- TTEST
- VAR
- VARA
- VARP
- VARPA
- WEIBULL
- ZTEST
- Copyright
EFFECT
The EFFECT function returns the effective annual interest rate from the nominal annual interest rate based on the number of compounding periods per year. Both arguments are number values.
EFFECT(nominal-rate, num-periods-year)
nominal-rate: The nominal rate of interest of a security. nominal-rate is entered as a decimal (for example, 0.08) or with a percent sign (for example, 8%).
num-periods-year: The number of compounding periods per year. num-periods-year must be greater than 0.
Examples |
---|
The actual (effective) interest rate will vary from the nominal rate, depending on the way interest is compounded. For the following examples, suppose a savings account with a stated (nominal-rate) interest of 5.00%. =EFFECT(0.05,365) returns approximately 5.12674964674473%, the effective annual interest rate if 5% is compounded daily (num-periods-year is 365). =EFFECT(0.05, 12) returns approximately 5.1161897881733%, the effective annual interest rate if 5% is compounded monthly. =EFFECT(0.05, 4) returns approximately 5.09453369140622% , the effective annual interest rate if 5% is compounded quarterly. =EFFECT(0.05, 2) returns approximately 5.06249999999999% , the effective annual interest rate if 5% is compounded semiannually. =EFFECT(0.05, 1) returns approximately 5%, the effective annual interest rate if 5% is compounded annually. In this case, the nominal and effective annual rates are the same because there is no interim compounding. |