Зміст курсу
Google Spreadsheets
Google Spreadsheets
2. Formatting of Cells and Ranges
Basic Editing OperationsFormatting DataWorking with FontsFormatting Text and Filling with ColorFormatting BordersMerging Cells and Text AlignmentClear Formatting and Paint Format ToolsSelecting Cells and RangesAdjusting Column and Row Size and PositionCopying and Deleting Columns and Rows Freezing and Grouping Rows and Columns
Arithmetic Functions
Addition is an operation that allows you to find the total sum of two or more numbers. You can use the addition operator + or the SUM function.
Syntax and Examples
value1 + value2
SUM(value1, value2,...value2, ...)
- value1 - The first value or range to be considered in the summation.
- value2, ... - OPTIONAL - Additional values or ranges to include in the summation.
Value (A) | Formula | Result | Comment | |
---|---|---|---|---|
5 | A2 + A3 + A4 | 30 | Returns the sum of values in A2, A3, and A4 using the + operator. | |
10 | SUM(A2:A3) | 15 | Returns the sum of values in the range A2:A3. | |
15 | SUM(A2:A4) | 30 | Returns the sum of values in the range A2:A4. |
Subtracting
Subtraction is an operation that allows you to find the difference between two numbers. Simply use the subtraction operator -.
Syntax and Examples
value1 - value2
Value (A) | Formula | Result | Comment | |
---|---|---|---|---|
5 | A2 - A3 | -5 | Returns the difference between values in A2 and A3. | |
10 | A3 - A4 - A2 | -10 | Returns the difference of values in A3, A4, and A2. | |
15 | A4 - A2 | 10 | Returns the difference between values in A4 and A2. |
Using Multiplication and PRODUCT Function
Multiplication is an operation that allows you to find the product of two or more numbers. You can use the multiplication operator * or the PRODUCT function.
Syntax and Examples
value1 * value2
PRODUCT(value1, value2,...value2, ...)
- value1 - The first value or range to be considered in the product calculation.
- value2, ... - OPTIONAL - Additional values or ranges to include in the product calculation.
Value (F) | Formula | Result | Comment | |
---|---|---|---|---|
-3 | F2 * F3 | 15 | Returns the product of F2 (-5) and F3 (-3), which equals 15. | |
-5 | F3 * F4 | -10 | Returns the product of F3 (-2) and F4 (5), which equals -10. | |
2 | F2 * F3 * F4 | 30 | Returns the product of F2 (-5), F3 (-3), and F4 (2), which equals 30. |
Dividing
Division is an operation that allows you to find the quotient of two numbers. Use the division operator /.
Syntax and Examples
value1 / value2
Value (F) | Formula | Result | Comment | |
---|---|---|---|---|
-3 | F2 / F3 | 0.6 | Returns the quotient of F2 (-5) and F3 (-10), which equals 0.5. | |
-5 | F3 / F4 | -2.5 | Returns the quotient of F3 (-10) and F4 (5), which equals -2. | |
2 | F2 / F3 / F4 | 0.3 | Returns the quotient of F2 (-5), F3 (-10), and F4 (5), which equals 0.2. |
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 6. Розділ 2