ntworld.ink
Microsoft Excel · Course 2 · Reference

Excel Words, in Plain English

Spreadsheets come with their own little vocabulary. None of it is complicated once someone explains it plainly, so here is every Excel word from the course, in everyday language, with a simple example. Keep this handy; you do not need to memorise any of it.

// take it with you Download this reference (Word)
Back to course overview
// on this page
// the file and the grid

The File and the Grid

The words for the spreadsheet itself, and the parts of the Excel window.

Workbook

the whole Excel file

The whole Excel file you open, save and share. One workbook can hold many worksheets.

Like a notebook: one cover holding many pages inside.

Worksheet

also: sheet, tab

A single page inside the workbook, one grid of cells. The tabs along the bottom let you move between them. You might keep January on one sheet and February on another.

Cell

one box in the grid

A single box where a row and a column meet. It is the basic unit of Excel, the place where everything you type goes.

Row and column

across, and up-and-down

Rows run across and are numbered down the side: 1, 2, 3. Columns run up and down and are lettered across the top: A, B, C.

Cell reference

a cell's address, like B5

A cell's address, written column letter first, then row number, like B5. This is what lets a formula point at data: =B5+B6 means "add whatever is in B5 and B6".

Like a seat number: row and column together tell you exactly which box you mean.

Range

a block of cells, like B2:B10

A block of cells, written with a colon. B2:B10 means "B2 through B10", the ten cells in between. You hand a range to a function like SUM.

The Ribbon

the buttons across the top

The strip of buttons across the top, organised into tabs (Home, Insert, Page Layout, Formulas, Data, Review, View). Each tab holds related tools. You will spend most of your time on the Home tab.

Name Box

top-left, shows the cell address

The small box on the left, just above the grid. It shows the address of the cell you have selected, and you can type an address into it to jump straight there.

Formula Bar

shows what is really in a cell

The long bar above the grid. It shows what is really in the selected cell: a cell might display 14 but the Formula Bar reveals it is actually =A1+A2.

Like looking under the bonnet: the grid shows the result, the Formula Bar shows the engine that made it.

Status bar

the strip along the bottom

The strip along the very bottom. Select a few numbers and it instantly shows their Sum, Average and Count, with nothing typed. The fastest calculator in Excel.

// formulas and maths

Formulas and Maths

The words for getting Excel to do the calculating for you.

Formula

an instruction that calculates

An instruction that tells Excel to work something out. It always starts with an equals sign, =, for example =B2+B3. Change a number it uses and the answer updates by itself.

Function

a ready-made formula

A ready-made formula Excel has already written, used as =FUNCTION(arguments). Instead of =B2+B3+B4+B5, you write =SUM(B2:B5).

Operator

the symbol that does the maths

A symbol that says what to do in a formula: + add, - subtract, * multiply, / divide. Multiply is a star, not an x; divide is a slash.

BODMAS

also: PEMDAS, order of operations

The order Excel does the maths in: Brackets, Orders (powers), Division and Multiplication, then Addition and Subtraction. So =A1+A2*A3 multiplies first. Add brackets to control it: =(A1+A2)*A3.

Relative reference

shifts when you copy, like B2

A reference that shifts when you copy a formula. Copy =B2 down a row and it becomes =B3. Usually what you want, so each row uses its own number.

Absolute reference

locked with $, like $E$1

A reference locked with dollar signs so it never moves when copied, like $E$1. Use it for a value every row must share, such as a single rate. Press F4 while editing to add the dollar signs.

Like a pinned note: everything around it can move, but it stays put.

AutoSum

the one-key total, Alt + =

A shortcut that writes a SUM for you. Click the empty cell below a column of numbers and press Alt + =; Excel guesses the range and totals it. The dropdown also offers Average, Count, Max and Min.

// making it look right

Making It Look Right

The words for tidying a sheet so it is easy to read.

Number format

how a value is displayed

How a value is shown (currency, percentage, date) without changing the value itself. Format 0.25 as a percentage and it shows 25%, but it is still 0.25 underneath, ready to calculate with.

Like a costume: the same number dressed up to read as money, a percent, or a date.

#####

not an error

Not an error. It just means the column is too narrow to show the number. Widen the column, or double-click its edge to auto-fit, and the value reappears.

AutoFill

finishes a pattern for you

The feature that finishes repetitive typing. Type Monday and drag the little square at a cell's bottom-right corner (the fill handle), and Excel writes Tuesday, Wednesday and so on.

Custom list

your own AutoFill list

A list you teach Excel, such as your team's names or a set of local suburbs, so AutoFill finishes it for you. Set it up under File then Options then Advanced then Edit Custom Lists.

Format Painter

copies the look, not the contents

The paintbrush on the Home tab. Click a cell that already looks right, click the paintbrush, then drag across other cells to give them the same look. Double-click it to paint several places.

Table

a smart range, Ctrl + T

A range turned into a smart object with Ctrl + T. It gets filter buttons, banded rows, and grows automatically when you add a row, which makes sorting, filtering and charting easier.

// lists and pictures

Lists and Pictures

The words for handling a list, and turning numbers into a picture.

Sort

reorder the rows

Rearrange rows into order: A to Z, smallest to largest, oldest to newest. Excel keeps each row's data together, so a person's name stays with their details. Click one cell in the column and use Data then A to Z.

Filter

hide rows that do not match

Hide the rows you do not currently care about, so only the matching ones show. Nothing is deleted; clear the filter and they all come back. A funnel icon on a header shows that column is filtered.

Grouping

fold rows out of sight

Fold a block of rows up and down with a small plus and minus button, like a drawer you can open and close. Handy for tucking detail away on a long sheet. Data tab then Group.

Data validation

rules for what a cell accepts

Rules that control what a cell will accept, most usefully a dropdown list so everyone picks the same word from a menu instead of typing it differently each time. Data tab then Data Validation.

Chart

a picture of your data

A visual picture of numbers. The three everyday kinds: column or bar for comparing amounts, line for change over time, and pie for the slices of one whole. A chart stays linked to the data and updates when the numbers change.

Print area

the part of a sheet that prints

The range you choose to print, so only that part comes out rather than the whole sheet. Select the range, then Page Layout then Print Area then Set Print Area.