7. ๐Ÿงช Practice Exercises - rafageist/book-spreadsheet-basics GitHub Wiki

This section provides hands-on activities to help you apply what youโ€™ve learned. You donโ€™t need advanced skills โ€” just follow each step and try things out!


๐Ÿ“‹ Exercise 1: Grocery List Total

  1. Open your spreadsheet tool
  2. Create a table like this:
Item Price Quantity
Bread 2.50 2
Milk 3.00 1
Apples 0.75 6
  1. Add a Total column: =Price * Quantity
  2. Use SUM() to calculate the final amount

๐Ÿ“‹ Exercise 2: Temperature Tracker

  1. Create a table to track daily temperatures
Day Temperature
Monday 29
Tuesday 31
Wednesday 28
  1. Use AVERAGE() to calculate the weekly average
  2. Use MAX() and MIN() to find the highest and lowest temperature

๐Ÿ“‹ Exercise 3: Simple Budget Table

Category Amount
Rent 300
Food 150
Transport 50
Savings 100
  1. Calculate the total expenses
  2. Use cell styles to highlight each category
  3. Create a pie chart to visualize the budget

๐Ÿง  Tips

  • Donโ€™t worry about making mistakes โ€” you learn by trying
  • Explore the toolbar to format your table and improve presentation
  • Save your work and compare with classmates if possible

Next: Mini Projects