robert_schmidt
robert_schmidt May 28, 2026 โ€ข 10 views

Google Sheets Examples: Working with Numbers and Text

Hey everyone! ๐Ÿ‘‹ I've been wrestling with Google Sheets lately, trying to figure out the best ways to handle both numbers and text. It seems straightforward, but then you get into formulas and formatting, and it can get tricky! I really need to master how to combine data, extract parts of text, and perform calculations efficiently. Can anyone help me with a clear guide and some practice questions to solidify my understanding? ๐Ÿ“Š
๐Ÿ’ป Computer Science & Technology
๐Ÿช„

๐Ÿš€ Can't Find Your Exact Topic?

Let our AI Worksheet Generator create custom study notes, online quizzes, and printable PDFs in seconds. 100% Free!

โœจ Generate Custom Content

1 Answers

โœ… Best Answer
User Avatar
jessica543 Mar 11, 2026

๐Ÿง  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

  1. 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)`

  2. 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)`

  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)`

  4. 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()`

  5. 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)`

  6. 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)`

  7. 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

Join the discussion

Please log in to post your answer.

Log In

Earn 2 Points for answering. If your answer is selected as the best, you'll get +20 Points! ๐Ÿš€