0% found this document useful (0 votes)
58 views2 pages

9 - Formulas in Spreadsheets

This document provides a quick reference guide for formulas in spreadsheets. It defines formulas as instructions that perform calculations using spreadsheet data. The summary describes: - Formulas always start with an equal sign and can include mathematical operators like addition and subtraction. - The fill handle can be used to auto-fill cells with the same formula or value down a column or across a row. - Absolute referencing with dollar signs ($) keeps cell references static when copying formulas, while relative references change as formulas are copied. - Functions like COUNTIF combine formulas and functions to count cells that meet criteria.

Uploaded by

inx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views2 pages

9 - Formulas in Spreadsheets

This document provides a quick reference guide for formulas in spreadsheets. It defines formulas as instructions that perform calculations using spreadsheet data. The summary describes: - Formulas always start with an equal sign and can include mathematical operators like addition and subtraction. - The fill handle can be used to auto-fill cells with the same formula or value down a column or across a row. - Absolute referencing with dollar signs ($) keeps cell references static when copying formulas, while relative references change as formulas are copied. - Functions like COUNTIF combine formulas and functions to count cells that meet criteria.

Uploaded by

inx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Quick reference: Formulas in spreadsheets

You have been learning a lot about spreadsheets and all kinds of time-saving calculations and organizational features
they offer. One of the most valuable spreadsheet features is a formula. As a quick reminder, a formula is a set of
instructions that does a specific calculation using the data in a spreadsheet. Formulas make it easy for data analysts to
do powerful calculations automatically, which helps them analyze data more effectively. Below is a quick-reference
guide to help you get the most out of formulas.

Formulas
The basics
 When you write a formula in math, it generally ends with an equal sign (2 + 3 = ?). But with formulas, they
always start with one instead (=A2+A3). The equal sign tells the spreadsheet that what follows is part of a
formula, not just a word or number in a cell.
 After you type the equal sign, most spreadsheet applications will display an autocomplete menu that lists
valid formulas, names, and text strings. This is a great way to create and edit formulas while avoiding typing
and syntax errors.
 A fun way to learn new formulas is just by typing an equal sign and a single letter of the alphabet. Choose one
of the options that pops up and you will learn what that formula does.

Mathematical operators
 The mathematical operators used in spreadsheet formulas include:
 Subtraction – minus sign ( - )
 Addition – plus sign ( + )
 Division – forward-slash ( / )
 Multiplication – asterisk ( * )

Auto-filling
The lower-right corner of each cell has a fill handle. It is a small green square in Microsoft Excel and a small blue
square in Google Sheets.

 Click the fill handle for a cell and drag it down a column to auto-fill other cells in the column with the same
value or formula in that cell.
 Click the fill handle for a cell and drag it across a row to auto-fill other cells in the row with the same value or
formula in that cell.
 If you want to create a numbered sequence in a column or row, do the following: 1) Fill in the first two
numbers of the sequence in two adjacent cells, 2) Select to highlight the cells, and 3) Drag the fill handle to the
last cell to complete the sequence of numbers. For example, to insert 1 through 100 in each row of column A,
enter 1 in cell A1 and 2 in cell A2. Then, select to highlight both cells, click the fill handle in cell A2, and drag it
down to cell A100. This auto-fills the numbers sequentially so you don't have to type them in each cell.

Absolute referencing
 Absolute referencing is marked by a dollar sign ($). For example, =$A$10 has absolute referencing for both the
column and the row value
 Relative references (which is what you normally do e.g. “=A10”) will change anytime the formula is copied and
pasted. They are in relation to where the referenced cell is located. For example if you copied “=A10” to the
cell to the right it would become “=B10”. With absolute referencing “=$A$10” copied to the cell to the right
would remain “=$A$10”. But if you copied $A10 to the cell below, it would change to $A11 because the row
value isn't an absolute reference.
 Absolute references will not change when you copy and paste the formula in a different cell. The cell being
referenced is always the same.
 To easily switch between absolute and relative referencing in the formula bar, highlight the reference you
want to change and press the F4 key; for example, if you want to change the absolute reference, $A$10, in your
formula to a relative reference, A10, highlight $A$10 in the formula bar and then press the F4 key to make the
change.

Data range
 When you click into your formula, the colored ranges let you see which cells are being used in your
spreadsheet. There are different colors for each unique range in your formula.
 In a lot of spreadsheet applications, you can press the F2 (or Enter) key to highlight the range of data in the
spreadsheet that is referenced in a formula. Click the cell with the formula, and then press the F2 (or Enter)
key to highlight the data in your spreadsheet.

Combining with functions


 COUNTIF() is a formula and a function. This means the function runs based on criteria set by the formula. In
this case, COUNT is the formula; it will be executed IF the conditions you create are true. For example, you
could use =COUNTIF(A1:A16, “7”) to count only the cells that contained the number 7. Combining formulas
and functions allows you to do more work with a single command.

You might also like