The MINUS function in Google Sheets returns the difference between two numbers, functioning as the formula equivalent of the - operator. It's useful when you want subtraction expressed explicitly as a function, such as inside ARRAYFORMULA or when chaining functions together. Dive into our comprehensive guide to master its application.
Parameters
value1: The number from whichvalue2will be subtracted.value2: The number to subtract fromvalue1.
Step-by-Step Tutorial
-
Using
MINUSwith two numbers:- Example:
=MINUS(10, 4) - Result:
6
- Example:
-
Using
MINUSwith cell references:- Example: If
A1is50andB1is18, then=MINUS(A1, B1)returns32.
- Example: If
Use Cases and Scenarios
- Financial Calculations: Calculate the difference between revenue and expenses.
- Inventory Tracking: Determine stock remaining after subtracting units sold from units received.
- Array Formulas: Use
MINUSinsideARRAYFORMULAwhere the-operator may not behave as expected.
Related Functions
SUM: Returns the sum of a series of numbers.