Formualizer Docs
ReferenceFunctionsFinancial Functions

EFFECT

Converts a nominal annual rate into an effective annual rate.

Summary

This is useful when nominal APR is quoted with periodic compounding and you need annualized yield including compounding effects.

Remarks

  • nominal_rate is annual; npery is compounding periods per year.
  • npery is truncated to an integer before computation.
  • Sign convention is not cash-flow based; this function transforms rate conventions only.
  • Returns #NUM! when nominal_rate <= 0 or npery < 1.
  • Result formula: (1 + nominal_rate / npery)^npery - 1.

Examples

Example
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
null
Example
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
null

FAQ

Does EFFECT accept fractional compounding periods?

npery is truncated to an integer first; values less than 1 (or non-positive nominal_rate) return #NUM!.

Runtime metadata

Category

Financial

Signature

EFFECT(arg1: Number, arg2: Number)

Arity

min 2, max 2

Arguments

arg1

Number · Scalar · coercion NumberLenientText

arg2

Number · Scalar · coercion NumberLenientText

Caps

PURE

Source

On this page