Determines the sign of a number. Returns 1 if the number is positive, zero (0) if the number is 0, and -1 if the number is negative.
Syntax
SIGN(number)
Number is any real number.
Examples
SIGN(10)
equals 1
SIGN(4-4)
equals 0
SIGN(-0.00001)
equals -1