ABS strips the sign from a number, returning its absolute value — turning -8 and 8 into the same number.
ABS returns the absolute value of a number — the number with its sign removed, so both -5 and 5 become 5.
The most common real use is comparing how far off two numbers are from each other regardless of direction — like flagging any variance over 10%, whether it is over or under budget.
=ABS(number)| Argument | Description |
|---|---|
| number required | The number to remove the sign from. |
=ABS(-12)Returns 12.
=ABS(B2-C2)If actual minus budget is -500 or +500, ABS treats both as a 500 variance for flagging purposes.
=IF(ABS(B2-C2)>1000,"Review","OK")Combines ABS with IF to flag both significant overspend and underspend the same way.
=ABS(A1) returns a new value; it does not overwrite A1 itself.
ExcelPro has hands-on ABS exercises built into real job scenarios — free to start.
Try ABS exercises →