INTRODUCTION TO ELECTRONIC SPREADSHEET
Download the Lessonotes Mobile Ghana app for faster lesson access on Android and iPhone.
Subject: Computing
Class: JHS 2
Term: 2nd Term
Week: 7
Grade code: B8.2.4.1.3
Strand code: 2
Sub-strand code: 4
Content standard code: B8.2.4.1
Indicator code: B8.2.4.1.3
Theme: PRODUCTIVITY SOFTWARE
Subtheme: INTRODUCTION TO ELECTRONIC SPREADSHEET
This page supports the lesson note with a companion video and a short classroom-ready summary.
For class groups and homework, share this lesson page so learners also get the summary, objectives, and full lesson context.
Welcome, learners! In our last lesson, we learned how to write basic formulas to perform calculations in a spreadsheet. Today, we will learn a powerful trick that saves a lot of time and effort: how to copy formulas. Imagine you are a shopkeeper with 100 items. Would you type the formula to calculate the total price for each of the 100 items one by one? No! That would be tiring and you might make mistakes. Spreadsheets are smart enough to help us do this with just one click. We will learn how to make the spreadsheet work for us by understanding how it handles cell references when we copy formulas.
A. Review: What is a Formula? A formula is an instruction we give to the spreadsheet to perform a calculation. It always begins with an equals sign (`=`). It uses cell references (e.g., `A1`, `B2`) to get the values for the calculation. It uses mathematical operators like `+` (add), `-` (subtract), `*` (multiply), and `/` (divide). Example: `=A2 * B2` tells the spreadsheet to multiply the value in cell A2 by the value in cell B2. B. Copying Formulas with the Fill Handle (Relative Referencing)
This is the most common and fastest way to copy a formula. Imagine we have a small tuck shop list.
| | A | B | C | D | | :--- | :--- | :--- | :--- | :--- | | 1 | Item | Quantity | Price (GHS) | Total Cost (GHS) | | 2 | Kalypo | 3 | 1.50 | | | 3 | Meat Pie | 2 | 3.00 | | | 4 | Bofrot | 5 | 0.50 | | | 5 | Water | 1 | 2.00 | |
To calculate the Total Cost for Kalypo, we would type this formula in cell D2: `=B2 * C2` After pressing Enter, D2 will show `4.50`.