Zum Inhalt springen

English:Spreadsheets and Simple Formulas

Aus MOOCsWiki Staging

Spreadsheets and Simple Formulas



Introduction

A spreadsheet is a digital grid that helps you organize information, calculate with numbers, and spot patterns. You can use spreadsheets for many everyday jobs: keeping a class reading log, adding the cost of items for a party, recording the results of a science experiment, comparing sports scores, or making a simple chart.

In this aiMOOC, you will learn how to work with spreadsheets and create simple formulas. You will practice entering data, using rows and columns, finding cells by their addresses, writing calculations, and checking whether your results make sense. The examples can be tried in spreadsheet programs such as LibreOffice Calc, Microsoft Excel, or Google Sheets.

A spreadsheet program may look complicated at first, but its main idea is simple: the sheet is made of small boxes called cells. Each cell can hold text, a number, a date, or a formula. Formulas can use values from other cells, so a result can change automatically when the original data changes.


Learning Goals

By the end of this course, you should be able to explain how a spreadsheet is organized, enter and edit data, identify a cell by its column letter and row number, write a simple formula beginning with an equals sign, use the operators +, -, *, and /, use simple functions such as SUM and AVERAGE, choose a useful range of cells, check a formula for mistakes, and use a spreadsheet to solve a real-world problem.

You will also practice digital literacy, mathematics, data handling, and clear communication.


Understanding a Spreadsheet


Rows, Columns, and Cells

A spreadsheet is arranged as a grid.

Rows run from left to right. They are usually marked with numbers.

Columns run from top to bottom. They are usually marked with letters.

A cell is the box where one row and one column meet. Each cell has an address, also called a cell reference. The address combines the column letter and the row number. For example, B3 means column B, row 3.

Datei:LO Calc 1 viewing a spreadsheet.png

Imagine a simple class snack survey. You could put student names in column A, favorite fruits in column B, and the number of pieces wanted in column C. Each piece of information belongs in its own cell. Keeping one kind of information in each column makes the sheet easier to read and calculate with.


Worksheets and Spreadsheet Files

A spreadsheet file can contain one or more worksheets. A worksheet is one grid of cells. You might use one worksheet for January data and another for February data, or one for a class survey and another for calculations.

For this course, you can focus on one worksheet at a time. Give your file and worksheet useful names so you can find your work later.


Entering Different Types of Data

A cell can contain different kinds of data.

Text is useful for names, labels, and descriptions, such as "Book", "Monday", or "Team A".

Numbers are useful for quantities and measurements, such as 6, 24, or 3.5.

Dates can record when something happened.

Formulas tell the spreadsheet to calculate a result.

It is important to enter data carefully. If you type a word where a number should be, a calculation may not work as expected.


A Small Example Table

Suppose you are planning fruit cups for a class activity.

A B C
Fruit Number of cups Pieces per cup
Apple 6 3
Banana 5 2
Orange 4 4

You could add another column called Total pieces and calculate each total with a formula. This is where spreadsheets become especially useful: instead of doing every calculation separately on paper, the spreadsheet can calculate from the values already stored in cells.


Simple Formulas


What Is a Formula?

A formula is an instruction that tells the spreadsheet to calculate something. In many spreadsheet programs, a formula begins with an equals sign.

For example:

=2+3

asks the spreadsheet to add 2 and 3.

A more useful formula can refer to cells:

=B2+C2

This tells the spreadsheet to add the value in cell B2 to the value in cell C2.

The displayed result is usually the answer, while the formula itself can be seen when you select the cell or look in the formula bar.


Why Use Cell References?

Cell references make formulas powerful. Suppose B2 contains 8 and C2 contains 5. The formula =B2+C2 gives 13.

Now change B2 from 8 to 10. The formula result changes to 15 automatically because the formula still refers to B2 and C2.

This means you can change your data without having to rewrite every calculation. The spreadsheet recalculates formulas that depend on the changed cells.


The Four Basic Operators

Simple spreadsheet formulas use familiar mathematical operations. The symbols used for multiplication and division may look different from the symbols you use on paper.

Operation Spreadsheet symbol Example Meaning
Addition + =A1+B1 Add the values in A1 and B1
Subtraction - =A1-B1 Subtract the value in B1 from A1
Multiplication * =A1*B1 Multiply the values in A1 and B1
Division / =A1/B1 Divide the value in A1 by B1

When dividing, remember that division by zero is not allowed. If a formula tries to divide by a cell containing zero, the spreadsheet will show an error instead of a normal answer.


Using Formulas in a Real Table

Return to the fruit-cup example. If B2 contains the number of cups and C2 contains the pieces per cup, then the total number of pieces can be calculated with:

=B2*C2

If B2 is 6 and C2 is 3, the result is 18.

You can repeat the idea for the other rows. This is a useful habit: first decide what the numbers mean, then choose the mathematical operation, and only then write the formula.


Cell Ranges and Functions


What Is a Range?

A range is a group of cells. A colon is often used to show all cells from a starting cell to an ending cell.

For example:

B2:B6

means all the cells from B2 through B6.

Ranges are useful when you want a function to work with several values at once.


SUM

The SUM function adds a range of numbers.

=SUM(B2:B6)

adds the values in B2, B3, B4, B5, and B6.

This is usually clearer than typing a long addition formula such as =B2+B3+B4+B5+B6.

Datei:LO Calc 3 Processing the data Summing up rainfall information.png


AVERAGE

The AVERAGE function finds the arithmetic mean of a group of numbers.

=AVERAGE(B2:B6)

adds the values in the range and divides by the number of values being averaged.

For Grades 5–6, you can think of the average as a fair-share value. If five scores were shared equally, the average would be the amount each score would have.


MIN and MAX

Two more useful functions are MIN and MAX.

=MIN(B2:B6) finds the smallest number in the range.

=MAX(B2:B6) finds the largest number in the range.

These functions are helpful when you want to find the lowest temperature, the fastest time if lower is better, the greatest number of votes, or the smallest measurement in a set of data.


Building a Good Spreadsheet


Use Clear Labels

A good spreadsheet should be understandable to someone who did not create it.

Use short, clear labels at the top of columns. For example, instead of writing only "Number", write "Books Read" or "Distance in cm" so the reader knows what the number means.

Give the spreadsheet a useful title such as Class Plant Growth or Weekly Reading Log.


Keep Similar Data Together

Put the same type of information in the same column. If column B contains temperatures, do not suddenly put student names in the middle of that column.

Consistent organization makes formulas easier to write and helps you notice mistakes.


Check Units

Numbers often need units. A value of 12 could mean 12 centimeters, 12 minutes, 12 euros, or 12 books.

Use a column heading such as Height in cm or Time in minutes when units matter. This helps prevent confusion and makes your results easier to explain.


Format for Readability

Spreadsheet formatting can make information easier to read. You can make headings bold, adjust column widths, center some labels, or use number formats.

Formatting changes how data looks, but it does not normally change the stored value. A cell showing €5.00 may still contain the number 5 for calculations.

Use formatting to support understanding, not to make the sheet crowded.


Checking Formulas and Fixing Mistakes


Common Formula Mistakes

A formula may give the wrong result because the formula is wrong even when the spreadsheet program is working correctly.

Common mistakes include forgetting the equals sign, using the wrong cell reference, choosing the wrong operation, leaving out an important cell, or selecting the wrong range.

For example, if your data is in B2 through B6 but you write =SUM(B2:B5), the value in B6 is left out.


A Simple Checking Routine

Before trusting a result, ask yourself:

Does the formula begin correctly?

Does it refer to the intended cells?

Did I choose the correct operation or function?

Does the answer look reasonable?

Can I estimate the answer in my head?

For example, if five values are all between 10 and 20, their average should also be between 10 and 20. If your spreadsheet shows an average of 150, something probably needs checking.


Formulas Are Instructions, Not Magic

A spreadsheet follows the instructions you give it. If the data or formula is wrong, the result may also be wrong. This is why checking your work is an important part of computational thinking.

When you find an error, do not be discouraged. Debugging means finding and fixing a problem. It is a normal part of working with digital tools.


From Data to Charts

Spreadsheets can also turn selected data into charts. A chart can help you compare values or see a pattern more quickly.

For example, a column chart could show how many books each group read in one month. A line chart could show the height of a plant over several weeks.

Before making a chart, make sure the data is organized clearly and the labels are correct. A chart based on incorrect data will also be misleading.

A useful chart should have a clear title and labels that help the reader understand what the numbers mean. For this course, the most important skill is not making a fancy chart. It is choosing and organizing accurate data first.


Mini Project: Class Reading Tracker

Imagine that four students record how many pages they read on Monday, Tuesday, and Wednesday.

Student Monday Tuesday Wednesday
Alex 12 15 10
Bri 8 11 14
Casey 16 13 15
Devon 10 9 12

Add a column called Total and use a formula or SUM function to calculate each student's three-day total.

Then add a column called Average and use AVERAGE to find each student's average number of pages per day.

Next, check each result by making a rough estimate. If a result looks surprising, inspect the formula and its cell references.

Finally, create a simple chart showing the students' total pages. Give the chart a clear title.

This project combines data entry, formulas, functions, checking, and communication.


Interactive Tasks


Quiz: Test Your Knowledge

What is a spreadsheet cell? (A box where a row and column meet) (!A complete spreadsheet file) (!A chart made from data) (!A button used to save work)




Which formula correctly adds the values in A1 and B1? (=A1+B1) (!A1+B1) (!=A1*B1) (!=A1/B1)




What does the cell reference C4 identify? (Column C and row 4) (!Column 4 and row C) (!Four cells in column C) (!A chart called C4)




Which symbol is normally used for multiplication in a spreadsheet formula? (*) (!x) (!:) (!=)




What does B2:B6 describe? (A range from B2 through B6) (!Only the cells B2 and B6) (!A formula that divides B2 by B6) (!A worksheet named B2)




Which function adds a group of numbers? (SUM) (!AVERAGE) (!MIN) (!MAX)




Which function finds the arithmetic mean of a group of numbers? (AVERAGE) (!SUM) (!MAX) (!MIN)




What usually happens when a value used by a formula changes? (The formula result recalculates) (!The spreadsheet deletes the formula) (!The row becomes a column) (!The file closes automatically)




Why should you estimate a result after using a formula? (To check whether the answer seems reasonable) (!To replace every formula with text) (!To remove all labels from the sheet) (!To stop the spreadsheet from calculating)




Which function finds the largest value in a selected range? (MAX) (!MIN) (!SUM) (!AVERAGE)





Memory Game

Spreadsheet A digital grid used to organize data and make calculations
Cell A box where a row and a column meet
Reference The address that identifies a cell
Range A group of selected cells
Formula An instruction that tells the sheet to calculate
Function A ready-made calculation such as SUM or AVERAGE





Drag and Drop

Match the correct terms. Topic
Row Horizontal line of cells
Column Vertical line of cells
SUM Adds values in a selected range
AVERAGE Finds the arithmetic mean
Cell reference Identifies the position of one cell




Match each spreadsheet term with its correct explanation.


Crossword Puzzle

Spreadsheet What digital grid can organize data and calculate results?
Formula What instruction tells a spreadsheet to calculate?
Column What vertical group of cells is usually marked by a letter?
Average What value represents the arithmetic mean?
Reference What word describes the address of a cell?
Function What ready-made calculation can perform tasks such as adding a range?





LearningApps


Cloze Text

Complete the text.

A spreadsheet is made of small boxes called

. A horizontal group of cells is a

. A vertical group of cells is a

. A cell can be identified by its

. A spreadsheet formula usually begins with an

. The

function adds values in a range. The

function finds the arithmetic mean of selected values. Careful users always

whether a calculated result makes sense.




Open-Ended Tasks


Easy

  1. My First Spreadsheet: Create a small spreadsheet with three columns for item, quantity, and category, and enter at least six rows of data.
  2. Cell Address Hunt: Choose ten filled cells in a spreadsheet and write down each cell reference together with the value stored there.
  3. Formula Picture Guide: Make a one-page illustrated guide that explains what the equals sign, plus sign, minus sign, multiplication star, and division slash do in simple formulas.
  4. Spreadsheet Explanation Video: Record a short video showing a row, a column, a cell, and one simple formula, using clear language for another Grade 5 or 6 learner.


Standard

  1. Snack Budget Spreadsheet: Plan a pretend class snack budget with item names, quantities, prices, and at least three formulas that calculate costs.
  2. Reading Data Project: Record pages read over several days, calculate a total and average, and create a chart that communicates one useful pattern.
  3. Spreadsheet Interview: Interview a teacher, librarian, family member, or other trusted adult about one real task for which they use spreadsheets, then summarize what data and calculations are involved.
  4. Formula Testing Experiment: Build a small sheet with several input values and formulas, change one input at a time, and write observations about which results change and why.


Advanced

  1. Class Survey Analysis: With teacher permission, collect a small anonymous class survey, organize the responses in a spreadsheet, calculate useful totals or averages, and present one chart.
  2. School Data Visit: With a teacher or trusted adult, visit a suitable school location such as a library or classroom and identify a safe, non-private example of data that could be organized in a spreadsheet; create a model sheet using invented or approved data.
  3. Formula Debugging Challenge: Create five formulas, intentionally add one different mistake to each, exchange the sheet with a partner, and write an explanation of how each error was found and repaired.
  4. Mini Data Story: Design a short presentation, poster, or video that uses a spreadsheet table, formulas, and a chart to answer a real question such as how reading time, plant growth, or practice results changed over several days.



Learning Assessment

  1. Design a Useful Table: Create a spreadsheet for a real or realistic school task, choose suitable column labels, enter at least eight rows of consistent data, and explain why your structure is easy to understand.
  2. Choose the Correct Formula: For three different word problems, decide whether addition, subtraction, multiplication, division, SUM, or AVERAGE is most suitable, write the formula, and explain your choice.
  3. Trace a Cell Reference: Given a completed sheet, explain how one result cell depends on other cells and predict what will happen if one input changes before testing your prediction.
  4. Find and Fix Errors: Inspect a spreadsheet containing at least four mistakes in data, cell references, ranges, or operations, correct them, and explain how you knew each correction was needed.
  5. Compare Two Methods: Solve one calculation first with individual cell operators and then with a function such as SUM, and compare the two methods for clarity and ease of checking.
  6. Transfer to a New Situation: Use spreadsheet skills to solve a new problem from mathematics, science, sport, reading, or everyday planning, and explain how formulas helped you reach and check a conclusion.




Evidence of Learning

Knowledge: You can explain rows, columns, cells, cell references, ranges, formulas, operators, and simple functions in your own words.

Skills: You can enter organized data, write and edit simple formulas, use SUM, AVERAGE, MIN, and MAX, select suitable ranges, and check results for reasonableness.

Products: You can create a readable spreadsheet with labels, data, formulas, and at least one useful chart or summary.

Reasoning: You can explain why a formula works, predict how changing an input will affect a result, and find common formula mistakes.

Transfer: You can choose a new real-world or school problem and decide how a spreadsheet could help organize information, perform calculations, and communicate findings.




OERs on the Topic

The English Wikipedia article on spreadsheets gives further background about spreadsheet concepts, formulas, cell references, functions, and charts.



Linked Learning Areas

Spreadsheets connect mathematics with computing and real-world problem solving. You use number operations when you create formulas, data skills when you organize information, logical thinking when you trace cell references, and communication skills when you label tables or explain charts.


aiMOOC Projects