The ADD function in Google Sheets returns the sum of two numbers, working exactly like the + operator. While most users simply type =A1+A2, the ADD function offers a formulaic, function-style equivalent that can be useful when composing formulas dynamically. Dive into our comprehensive guide to see how it works.
Parameters
value1: The first number to add.value2: The second number to add.
Step-by-Step Tutorial
-
Using
ADDwith two numbers:- Example:
=ADD(3, 5) - Result:
8
- Example:
-
Using
ADDwith cell references:- Example: If
A1is10andB1is25, then=ADD(A1, B1)will return35.
- Example: If
Use Cases and Scenarios
- Programmatic Formulas: Use
ADDinside larger formulas built with functions likeLAMBDAorARRAYFORMULAwhere a function form is easier to compose than an operator. - Consistency with Other Operator Functions: Pair with
MINUS,MULTIPLY, andDIVIDEfor a uniform, function-based approach to arithmetic. - Teaching and Documentation: Make formula logic more explicit and readable for people learning spreadsheet basics.
Related Functions
SUM: Add up a series of numbers or ranges, useful for more than two values.MINUS: Returns the difference of two numbers.MULTIPLY: Returns the product of two numbers.