Returns an integer based on the sign on (Num). 1 is returned for a positive value, -1 is returned for a negative value, and 0 is returned for zero.
(Num) is a numeric expression to be used in the calculation.
Examples
Sign(56.23) returns a value of 1.
Sign(-9.5687) returns a value of -1.
Comment