SIGN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel SIGN function returns the sign of a number: 1 if positive, -1 if negative, and 0 if the number is zero.


Quick answer:
=SIGN(-3) = -1

Syntax

=SIGN(number)
ArgumentDescription
numberRequiredThe number whose sign you want to test.

How to use it

SIGN reduces any number to one of three values, telling you only its direction:

=SIGN(-3) // negative = -1
=SIGN(0) // zero = 0
=SIGN(8) // positive = 1

It is handy for branching on whether a value rose or fell, or for building +1 / -1 multipliers. Because any number equals SIGN(n) * ABS(n), you can split a value into direction and magnitude.

Variance direction: =SIGN(actual - target) returns 1 when you beat target, -1 when you missed, and 0 when you hit it exactly — a clean flag for conditional formatting or IF logic.

Try it: interactive demo

Live demo

Pick a SIGN example to see the formula and its result.

Result:

Practice workbook

📊
Download the free SIGN practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What does SIGN return for zero?
Exactly 0. SIGN returns one of just three values: 1 (positive), -1 (negative), or 0 (zero).
How do I turn SIGN into a +1/-1 multiplier?
Multiply by SIGN to copy another value's direction: =ABS(x) * SIGN(y) gives the magnitude of x with the sign of y.
Can SIGN replace an IF for positive/negative tests?
Often yes. Instead of nested IFs, SIGN collapses the test to -1/0/1, which you can feed into CHOOSE or arithmetic.
What is the relationship between SIGN and ABS?
They are complementary: SIGN gives direction, ABS gives magnitude, and SIGN(n) * ABS(n) rebuilds the original number n.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: ABS · MOD · INT · IF · ROUND