The UMINUS function in Google Sheets is a simple yet powerful tool that allows users to reverse the sign of a given number. This can be particularly useful in financial calculations, data analysis, or any scenario where a quick sign change is needed. By applying this function, users can efficiently manage numerical values without manually changing their signs.
Syntax
UMINUS(value)
- value: The numeric value or cell reference whose sign will be reversed.
Example #1
=UMINUS(5)
This formula reverses the sign of 5, resulting in -5.
Example Result: -5
Example #2
=UMINUS(-10)
This call changes the sign of -10 to +10.
Example Result: 10
Example #3
=UMINUS(A1)
If cell A1 contains 15, this function reverses the sign to -15.
Example Result: -15
Error handling
- VALUE! – This error occurs when the value provided is non-numeric or text, as UMINUS requires a numeric input to function correctly.