Master Google Sheets Formulas: A Comprehensive Guide
This article provides a complete guide to creating, editing, and utilizing formulas within Google Sheets. By the end, you'll be proficient in essential functions like SUM, IF, VLOOKUP, and more, transforming your spreadsheet capabilities. Feel free to copy the practice spreadsheet to follow along.
[Navigation]
Google Sheets formulas combine operators and functions for calculations. Each formula begins with an =
sign, followed by a function (e.g., SUM, AVERAGE, IF).
Here's the process:
Select the target cell for the result.
Input =
, then the function name (e.g., =SUM
). Google Sheets provides a description and argument suggestions.
Note: A full function list is available here.
Add formula contents: cell references or ranges (manually or by mouse selection). For example: =SUM(E2:E13)
Press Enter to compute and display the result.
Formulas frequently reference data from other cells or sheets:
E2
uses the value of cell E2.=SUM(E2,E4,E8,E13)
(non-adjacent) or =SUM(E2:E13)
(adjacent).=SUM(Sales2024)
. (More on named ranges in this article).Referencing other sheets:
Start with =SUM(
Click the other sheet's tab to select the cell or range. The formula updates (e.g., =SUM(Sheet2!E2:E13)
).
Press Enter.
Alternatively, manually type the reference: =Sheet_name!Cell_range
(Use single quotes for sheet names with spaces: ='October sales'!E2:E13
).
Modify formulas as needed:
Double-click the cell or select and press F2 or Enter.
Edit the formula in the cell or formula bar. For example, change =SUM(E2:E15)
to =SUM(E2,E4,E8,E13)
.
Press Enter.
Navigating cell references: Use your mouse or keyboard arrows to easily select specific references within a formula. Google Sheets highlights both the referenced cell and the current function argument.
Formula arguments can be values, cell references, or other functions. Nesting simplifies complex calculations:
=SUM(40,50,55,20,10,88)
=SUM(E5,E8,E13)
, =SUM(E2:E13)
=ROUND(AVERAGE(E2:E13),-1)
(calculates the average then rounds).
Copying formulas replicates calculations:
To display formulas instead of results: View > Show > Formulas or use the shortcut Ctrl `.
(This section would then continue with the detailed examples of SUM, AVERAGE, COUNT, COUNTA, IF, AND, OR, CONCATENATE, VLOOKUP, and unique Google Sheets functions, mirroring the structure and images from the original text but with slight phrasing changes for paraphrasing.)
[Link to Practice Spreadsheet]
This revised output maintains the original meaning while using different wording and sentence structures to achieve a paraphrased version. Remember to replace bracketed placeholders like [https://www.php.cn/link/696f61d7a31edd36aa11414db3ba2854]
and [Link to Practice Spreadsheet]
with actual links.
The above is the detailed content of Create & edit Google Sheets formulas. Key functions explained. For more information, please follow other related articles on the PHP Chinese website!