Subtraction Operator (-)

Used to find the difference between two numbers or to present a negative value of a numeric expression.

value1-value2

Where value is any numeric expression.

-value

C1-C2

Where

C1 = 50 and C2 = 25

Returns the difference between cell C1 and cell C2, which is 25.

-C1

Where

C1 = 20

Will return the negative value of cell C1, which is -20.

Related Topics