Hi I have a column with positive, negative, and 0 numbers in Column A:
1
1
0
-1
-1
1
0
2
-2
0
I would like column B to say "Too Many" with positive number, "Missing" with negative numbers, and not do anything if the number = 0, like this:
ColA ColB
1 Too Many
1 Too Many
0
-1 Missing
-1 Missing
1 Too Many
0
2 Too Many
-2 Missing
0
Right now I'm using:
Is there a way I can ignore the 0's? Right now it's treating 0 as FALSE.
1
1
0
-1
-1
1
0
2
-2
0
I would like column B to say "Too Many" with positive number, "Missing" with negative numbers, and not do anything if the number = 0, like this:
ColA ColB
1 Too Many
1 Too Many
0
-1 Missing
-1 Missing
1 Too Many
0
2 Too Many
-2 Missing
0
Right now I'm using:
Code:
=IF(A1>0, "Too Many", "Missing")
Is there a way I can ignore the 0's? Right now it's treating 0 as FALSE.