๐ง Quick Study Guide: Google Sheets - Numbers & Text
- ๐ข Working with Numbers:
- โจ Basic Arithmetic: Use operators like `+`, `-`, `*`, `/` directly in cells (e.g., `=A1+B1`).
- ๐ Common Functions: Utilize functions like `=SUM(range)`, `=AVERAGE(range)`, `=COUNT(range)`, `=MAX(range)`, `=MIN(range)`.
- ๐งฎ Rounding & Integers: Functions include `=ROUND(number, [places])`, `=ROUNDUP()`, `=ROUNDDOWN()`, `=INT(number)` (rounds down to nearest integer), `=TRUNC(number, [places])` (truncates to integer or specified decimal places).
- ๐ Formatting: Apply currency, percentage, date, or number formats via the 'Format' menu.
- ๐ Working with Text:
- ๐ Concatenation: Combine text strings using the `&` operator (e.g., `=A2&" "&B2`) or the `=CONCATENATE(text1, text2, ...)` function.
- โ๏ธ Extracting Text:
- `=LEFT(string, [num_chars])`: Extracts characters from the beginning.
- `=RIGHT(string, [num_chars])`: Extracts characters from the end.
- `=MID(string, start_index, num_chars)`: Extracts characters from the middle.
- ๐ Finding & Replacing: `=FIND(search_for, text_to_search, [starting_at])` returns the starting position. `=REPLACE(text, position, length, new_text)` replaces a portion of text.
- ๐ก Case Conversion: `=LOWER(text)`, `=UPPER(text)`, `=PROPER(text)` (capitalizes first letter of each word).
- ๐งน Cleaning Text: `=TRIM(text)` removes leading, trailing, and excessive spaces between words.
- ๐ Length: `=LEN(text)` returns the number of characters in a string.
- ๐ค Combining Numbers and Text:
- ๐ก When combining, numbers might lose their specific formatting. Use the `=TEXT(value, format)` function to preserve numerical formatting (e.g., `=A1&" - "&TEXT(B1, "$0.00")`).
- โจ Conditional Formatting: Use rules to apply formatting based on cell values (numbers) or text content.
- ๐ Cell References:
- โก๏ธ Relative (A1): Changes when copied.
- ๐ Absolute ($A$1): Stays fixed when copied.
- โ๏ธ Mixed ($A1 or A$1): Fixes either row or column.
๐ฏ Practice Quiz
-
Which formula would correctly combine the text in cell A1 ("First") with the text in cell B1 ("Name") to display "First Name"?
A. `=CONCATENATE(A1, B1)`
B. `=A1+B1`
C. `=A1&" "&B1`
D. `=JOIN(A1, B1)`
-
You have "Product-001" in cell C1. Which formula would extract "001" from this string?
A. `=LEFT(C1, 3)`
B. `=RIGHT(C1, 3)`
C. `=MID(C1, 8, 3)`
D. `=EXTRACT(C1, 8, 3)`
-
Cell D1 contains the number 1234.5678. You want to display it as "Total: $1,234.57" within a text string. Which formula achieves this?
A. `="Total: "&D1`
B. `="Total: "&TEXT(D1, "$#,##0.00")`
C. `="Total: "&DOLLAR(D1, 2)`
D. `="Total: "&FIXED(D1, 2)`
-
Which function is used to remove extra spaces from a text string, including leading, trailing, and multiple spaces between words?
A. `=CLEAN()`
B. `=TRIM()`
C. `=REMOVE.SPACES()`
D. `=COMPACT()`
-
If cell E1 contains "GOOGLE SHEETS" and you want to convert it to "Google Sheets", which function would you use?
A. `=LOWER(E1)`
B. `=UPPER(E1)`
C. `=PROPER(E1)`
D. `=CAPITALIZE(E1)`
-
To sum the values in cells F1 to F10, which is the most efficient formula?
A. `=F1+F2+...+F10`
B. `=ADD(F1:F10)`
C. `=TOTAL(F1:F10)`
D. `=SUM(F1:F10)`
-
Cell G1 contains the text "Hello World". What will `=LEN(G1)` return?
A. 10
B. 11
C. 12
D. 13
Click to see Answers
1. C
2. B
3. B
4. B
5. C
6. D
7. B