#NUM!Supported on: Microsoft Excel® & Google Sheets™
How to Fix the #NUM! Error in Excel & Google Sheets
The #NUM! error occurs when a formula contains numeric values that fall outside the supported mathematical domain or when an iterative calculation fails to converge on a solution.
Formula Syntax Comparison
Broken Formula
=SQRT(A2 - B2) (where A2 < B2)
Corrected Formula
=SQRT(MAX(0, A2 - B2))
Manual Step-by-Step Fix
1
Step 1
Ensure input parameters comply with function mathematical domains (e.g., use ABS() with SQRT()).
2
Step 2
Provide a realistic initial guess argument in IRR(values, [guess]).
3
Step 3
Review exponents and power operations to prevent numerical overflow.