Google Sheets is a versatile and collaborative spreadsheet tool that’s ideal for data organization, analysis, and reporting. Google Sheets basics, practical examples, formulas, and specific scenarios to help you become proficient.
Data Layout:
| Category | Amount |
|--------------|------------|
| Rent | $1000 |
| Groceries | $300 |
| Entertainment| $150 |
Total Formula: =SUM(B2:B4)
Example Data:
| Task Name | Priority | Due Date | Status |
|---------------|--------------|--------------|------------|
| Design Website| High | 2025-01-30 | In Progress|
Conditional Formatting:
=TODAY()>C2
=COUNTIF(C2:C30, "Y")
=SUM(A1:A10)
=AVERAGE(B2:B10)
=IF(B2>100, "Above Target", "Below Target")
=CONCAT(A2, " ", B2)
=SPLIT(A2, ",")
=LEFT(A2, 5)
=VLOOKUP("Apple", A2:C10, 2, FALSE)
=HLOOKUP("2025", A1:D5, 2, FALSE)
=INDEX(B2:B10, MATCH("Apple", A2:A10, 0))
=TODAY()
=DATEDIF(A2, B2, "D")
=ARRAYFORMULA(A2:A10*B2:B10)
=IMPORTRANGE("sheet_url", "Sheet1!A1:B10")
=QUERY(A1:C10, "SELECT A, B WHERE C > 50")
Problem: Track sales performance across regions.
Solution:
1. Data Table:
| Region | Sales |
|------------|-----------|
| North | $5000 |
| South | $3000 |
=SUM(B2:B10)
Problem: Organize and calculate monthly expenses.
Solution:
1. Data Layout:
| Date | Description | Category | Amount |
|----------|-----------------|--------------|------------|
| 01/05 | Rent | Housing | $1000 |
| 01/07 | Groceries | Food | $200 |
=SUM(D2:D30)
=SUMIF(C2:C30, "Housing", D2:D30)
Problem: Visualize employee performance.
Solution:
1. Columns: Employee Name, Sales, Rating
2. Steps:
- Add bar charts for sales performance.
- Use conditional formatting to highlight top performers.
Problem: Track task progress for a team project.
Solution:
1. Columns: Task, Assigned To, Deadline, Status, Progress
2. Formulas:
- Days Remaining: =DATEDIF(TODAY(), C2, "D")
- Completed Tasks: =COUNTIF(E2:E30, "Complete")
Problem: Pull data from a master sheet into individual department sheets.
Solution:
1. Use IMPORTRANGE:
- Formula: =IMPORTRANGE("master_sheet_url", "Sheet1!A1:D50")
2. Combine with FILTER to show specific department data:
- Formula: =FILTER(A2:D50, C2:C50="Sales")
Problem: Monitor team attendance over a month.
Solution:
1. Data Layout:
| Name | 01/01 | 01/02 | 01/03 | |
|----------|-----------|-----------|-----------|-----|
| John | P | A | P | |
=COUNTIF(B2:Z2, "P")
=COUNTIF(B2:Z2, "P")/COLUMNS(B2:Z2)*100
Keep headers visible while scrolling: View > Freeze > 1 Row/1 Column.
Protect Ranges:
Prevent edits to specific cells: Data > Protect Sheets and Ranges.
Custom Data Validation:
Data > Data Validation: Add criteria like a list or number range.
Keyboard Shortcuts:
Alt + Shift + =
(Windows) or Option + Shift + =
(Mac). Open filter view: Ctrl + Shift + L
(Windows) or Cmd + Shift + L
(Mac).
Collaborative Comments:
By mastering these basics, formulas, and specific workflows, you can use Google Sheets for everything from data analysis to project management.