Formula: Errors

QFFE_206: "Overflow in 'token'"

Attempt to calculate the value of a formula resulted in overflow.

Cause

The result of arithmetic operations or function calls is too big.
1e200 * 1e200 Overflow in '*'
-1e+308 - 1e308 Overflow in '-'
5^5^5 Overflow in '^'
3^1000 / 2^1500 Overflow in '^'
exp(1000) Overflow in 'exp(1000)'
pow(200, 200) Overflow in 'pow(200, 200)'

Resolution