Excel Practice Test

โ–ถ

The first formula you ever write in Excel will probably be embarrassingly simple โ€” something like =2+2 in a single cell โ€” and that's the right place to start. Every formula in Excel, from the most basic addition to a multi-nested INDEX/MATCH monster, begins with the same character: an equals sign. Type = first, then whatever math or function you want, then press Enter. That's the rule. Skip the equals sign and Excel treats your entry as plain text, leaving "2+2" sitting there as a string instead of evaluating it as 4.

This guide walks you through writing formulas in Excel from the absolute beginning โ€” what the formula bar does, which operators you'll use most, how the order of operations actually works inside a spreadsheet, when to lock a cell reference with dollar signs, and how the handful of essential built-in functions (SUM, AVERAGE, IF, VLOOKUP) save you from doing math the long way. We'll also cover the keyboard shortcuts that real Excel users lean on every day, the error messages you'll meet in your first week, and how to debug a formula that isn't returning what you expected.

If you've used a calculator, you already understand 80% of Excel formulas. The other 20% is just learning the language โ€” what symbols mean what, where to type them, and how to reference data in other cells instead of typing numbers directly. That last piece is where the real power lives. A formula that points at cells (rather than hard-coded values) updates automatically when the underlying data changes, which is the whole reason spreadsheets exist in the first place.

Excel Formula Basics at a Glance

=
Every formula starts here
6
Core arithmetic operators
400+
Built-in worksheet functions
Alt+=
AutoSum shortcut

Let's start with the workspace itself. When you click a cell and look just above the column headers, you'll see a long input box โ€” that's the formula bar. Anything you type while a cell is selected appears in two places at once: inside the cell and inside the formula bar. The cell shows the result of the formula (the answer); the formula bar shows the formula itself. That distinction matters because you'll constantly need to read what's actually inside a cell, not just what's displayed.

Here's a quick experiment. Click cell A1, type =10+5, and press Enter. Cell A1 now shows 15. Click A1 again and look at the formula bar โ€” it still says =10+5. The cell displays the result; the formula bar reveals the recipe. This two-layer system is how Excel separates what your eye sees from what the spreadsheet is actually doing under the hood. Master this and you've already started thinking like an Excel user instead of a calculator user.

The Six Operators You'll Use Constantly

Excel arithmetic uses six basic symbols you already know from grade-school math, plus one you might not โ€” the caret for exponents. Here's the full set:

  • + โ€” addition: =A1+A2
  • - โ€” subtraction: =A1-A2
  • * โ€” multiplication (asterisk, not "x"): =A1*A2
  • / โ€” division (forward slash): =A1/A2
  • ^ โ€” exponent (Shift+6 on US keyboards): =A1^2 means A1 squared
  • % โ€” percent: =A1*15% calculates 15% of A1

You'll also use parentheses ( and ) constantly to group operations, and the colon : to define ranges like A1:A10. Those aren't operators in the math sense, but they show up in nearly every formula you'll ever write.

Now the part that trips up newcomers: operator precedence, which is just Excel's name for the order of operations. If you write =2+3*4, Excel doesn't read left to right โ€” it follows the same PEMDAS rule you learned in school (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction). So =2+3*4 evaluates to 14, not 20. Multiplication runs first, then addition. Same logic applies to division before subtraction, exponents before everything except parentheses.

This becomes a real problem the moment you copy a formula from somewhere and don't understand why it's giving you a different answer than you expected. Nine times out of ten the issue is precedence. The fix is to use parentheses generously even when you technically don't need them. =(2+3)*4 is clearer than =2+3*4 and removes any doubt about what runs first. Extra parentheses don't slow Excel down and they make formulas readable when you come back to them six months later.

If two operators have equal precedence โ€” say two multiplications next to each other โ€” Excel evaluates them left to right. So =10/2*5 works out to 25 (10 divided by 2 is 5, then 5 times 5 is 25), not 1. Most spreadsheets do it this way and most calculators agree, but it's worth knowing because the answer differs from what a right-to-left interpretation would give.

Four Types of Cell References

move Relative (A1)

Adjusts when you copy the formula. Copying =A1+B1 down one row becomes =A2+B2. The default behavior โ€” useful 80% of the time.

lock Absolute ($A$1)

Stays fixed no matter where you copy. =$A$1+B1 always pulls from A1. Press F4 after typing a reference to add the dollar signs fast.

arrow-down Mixed Row ($A1)

Column locked, row floats. Useful when copying across a horizontal range but pulling from the same column.

arrow-right Mixed Column (A$1)

Row locked, column floats. Common in lookup tables where a header row stays put while columns shift.

So far we've been typing numbers directly into formulas, but that's not how Excel is actually meant to work. The real power kicks in when your formula references cells instead of hard values. Type the number 10 into A1, type 5 into A2, then in A3 type =A1+A2. You'll see 15. Now change A1 to 20 โ€” A3 instantly updates to 25 without you touching the formula. That dynamic recalculation is the whole point of using a spreadsheet instead of a calculator, and it's why "always reference cells, never hard-code values" is the first rule of clean Excel work.

References come in two flavors: relative and absolute. A relative reference like A1 shifts when you copy a formula. If =A1+B1 sits in C1 and you copy it down to C2, it becomes =A2+B2 automatically. That's almost always what you want. But sometimes you need a reference to stay put โ€” say you're multiplying a column of numbers by a single tax rate in cell F1.

To pin F1 so it doesn't shift when copied, write it as $F$1. Those dollar signs lock the column and row. Press F4 after typing a reference and Excel cycles through the four variants: A1 โ†’ $A$1 โ†’ A$1 โ†’ $A1 โ†’ back to A1. Memorize that shortcut โ€” it's one of the highest-payoff keystrokes in the application.

Mixed references (with one dollar sign) come up less often but matter when you're building lookup tables or multiplication grids. Locking just the column with $A1 means the column stays A no matter where you copy, but the row floats with the formula's position. Locking just the row with A$1 does the opposite. You don't need these every day, but when you do need them, nothing else works.

Essential Functions Every Beginner Should Know

๐Ÿ“‹ SUM

What it does: Adds up a range of cells.
Syntax: =SUM(A1:A10)
Real example: =SUM(B2:B25) totals 24 monthly sales figures.
Why it matters: Faster than typing =B2+B3+B4+... and handles new rows if you extend the range. The most-used function in Excel by a wide margin โ€” your AutoSum button (Alt+=) inserts this one with a guessed range.

๐Ÿ“‹ AVERAGE

What it does: Calculates the arithmetic mean of a range.
Syntax: =AVERAGE(A1:A10)
Real example: =AVERAGE(C2:C31) finds the average daily temperature for a month.
Note: Ignores blank cells and text but includes zeros. If you want to skip zeros, use AVERAGEIF with a condition like <>0.

๐Ÿ“‹ COUNT

What it does: Counts how many cells in a range contain numbers.
Syntax: =COUNT(A1:A10)
Real example: =COUNT(D2:D100) tells you how many of 99 rows actually have numeric data.
Related: COUNTA counts non-empty cells (text or numbers), and COUNTBLANK does the opposite โ€” useful for checking data completeness.

๐Ÿ“‹ IF

What it does: Returns one value if a condition is true and another if it's false.
Syntax: =IF(A1>100, "High", "Low")
Real example: =IF(B2>=70, "Pass", "Fail") grades a test score column.
Note: Text values inside an IF need double quotes around them. Numbers don't need quotes. You can nest IFs but consider IFS or SWITCH for cleaner multi-branch logic.

๐Ÿ“‹ VLOOKUP

What it does: Looks for a value in the first column of a table and returns a value from another column in the same row.
Syntax: =VLOOKUP(lookup_value, table_array, col_index, [range_lookup])
Real example: =VLOOKUP(A2, $E$2:$G$50, 3, FALSE) finds the value in A2 within column E, then returns the matching cell from column G. The FALSE argument forces an exact match โ€” almost always what you want.
Heads up: XLOOKUP (newer Excel) is more flexible and easier to read, but VLOOKUP still dominates older workbooks.

Functions are pre-built formulas that take inputs called arguments and return a value. Every function follows the same skeleton: =FUNCTION_NAME(argument1, argument2, ...). The arguments go inside parentheses, separated by commas. Some functions take zero arguments, some take a fixed number, some accept a variable list. Excel's formula tooltip pops up as soon as you type the opening parenthesis and shows you exactly which arguments are expected and in what order โ€” pay attention to it, especially when you're learning.

Let's walk through SUM as the canonical first function. Click an empty cell and type =SUM(. The tooltip appears showing SUM(number1, [number2], ...) โ€” the brackets mean optional. Now drag across cells A1 through A5 and Excel fills in the range for you: =SUM(A1:A5). Close the parenthesis, press Enter, and you've got the total. The colon between A1 and A5 is the range operator โ€” it means "everything from A1 to A5 inclusive." You can extend ranges to multiple columns too: =SUM(A1:C10) totals all 30 cells in that 3-by-10 block.

AutoSum is the lazy shortcut to all of this. Click a cell directly below a column of numbers (or to the right of a row), press Alt+=, and Excel guesses your range and writes the SUM formula automatically. Most of the time the guess is correct. When it isn't, just drag to fix the range before pressing Enter.

AutoSum also handles AVERAGE, COUNT, MAX, and MIN โ€” click the dropdown arrow next to the AutoSum button on the Home ribbon to pick something other than SUM. Beginners often type these formulas longhand for weeks before discovering Alt+= exists. Don't be that beginner.

Try a Free Excel Practice Test

Once you're writing formulas regularly, you'll start to wish for ways to edit and inspect them without having to retype the whole thing. Excel gives you two keys that earn their keep every single day: F2 and F9. F2 puts the selected cell into edit mode without you needing to double-click โ€” your cursor lands at the end of the formula ready for changes. The current cell references are highlighted in color, with matching colored borders around the actual cells on the sheet, which makes it instantly obvious whether your formula is pointing where you think it is.

F9 is even more useful for debugging. Inside a formula, select just part of it โ€” say the section A1*B1 in a longer expression โ€” and press F9. Excel evaluates that piece and replaces it with the literal result, right there in the formula bar. You can see exactly what intermediate value that chunk is producing. Press Escape (not Enter) when you're done so the formula reverts to its original form. This is how experienced Excel users figure out which part of a long nested formula is broken, without having to break the whole thing apart into helper cells.

The Evaluate Formula dialog (Formulas tab โ†’ Evaluate Formula) does the same thing more thoroughly, stepping through the formula one piece at a time and showing the result of each evaluation. It's slower than F9 but useful when you've got a deeply nested formula and you want to walk through it methodically. For day-to-day work, F2 to edit and F9 to spot-check are the two keys to commit to muscle memory.

Your First Formula in Excel โ€” Step by Step

Click an empty cell where you want the answer to appear
Type the equals sign (=) to tell Excel you're starting a formula
Type your expression โ€” either math (10+5) or a function (SUM(A1:A10))
Use parentheses to group operations and clarify order of precedence
Reference cells (A1, B2) rather than typing values directly when possible
Press Enter to confirm โ€” the result appears in the cell, formula stays in the bar
Click the cell again and read the formula bar to verify what you wrote
If you see an error like #DIV/0! or #NAME?, check spelling and references

Errors are a normal part of learning Excel. The first time you see #VALUE! in a cell you'll probably panic โ€” don't. Excel uses a handful of standard error codes to tell you exactly what went wrong, and once you know what each one means, debugging becomes a 30-second job instead of a guessing game. The five errors you'll meet most often in your first month are #DIV/0!, #NAME?, #VALUE!, #REF!, and #N/A. Each one points at a different category of mistake.

#DIV/0! means you're dividing by zero or by an empty cell โ€” typically because the denominator cell hasn't been filled in yet, or because you typed =A1/0 by accident.

The fix is usually wrapping the division in an IFERROR like =IFERROR(A1/B1, 0) so a blank or zero denominator returns 0 instead of breaking the cell. #NAME? means Excel didn't recognize a function name or named range โ€” most often a typo (=SUM spelled =SUMM) or a missing quote around a text value.

#VALUE! appears when you try math on something Excel can't interpret as a number โ€” usually a text cell mixed into an arithmetic formula. #REF! shows up when a formula references a cell that's been deleted or moved out of range. #N/A is the lookup family's way of saying "I couldn't find that value" โ€” VLOOKUP throws it when the lookup value doesn't exist in the table.

To trace what's feeding into a problematic formula, use Trace Precedents on the Formulas tab. Click the cell, click Trace Precedents, and Excel draws blue arrows from every cell the formula reads. The reverse โ€” Trace Dependents โ€” shows you every cell that reads from your selected cell, which is invaluable when you're about to delete something and want to know what will break. Clear all arrows with Remove Arrows when you're done. This auditing toolkit takes a few minutes to learn and saves hours over time, especially in spreadsheets you didn't build yourself.

Typing Formulas vs Using AutoSum

Pros

  • Typing formulas teaches you the language โ€” you actually learn what each function does
  • Custom logic (nested IFs, complex conditions) requires hand-typed formulas anyway
  • You control exactly which cells get referenced โ€” no surprise ranges
  • Easier to read someone else's spreadsheet when you've written formulas yourself
  • Necessary for any function more sophisticated than SUM/AVERAGE/COUNT/MIN/MAX
  • Builds confidence โ€” beginners who only click buttons stay beginners

Cons

  • Slower than Alt+= for simple totals on adjacent ranges
  • More prone to typos in function names (#NAME? errors)
  • Easier to mismatch parentheses on longer formulas
  • Requires memorizing operator precedence and reference syntax
  • Repetitive across similar columns โ€” AutoSum handles patterns faster
  • Risk of forgetting the equals sign and entering text by mistake

A few habits separate people who fight with Excel from people who breeze through it. The first is always starting in a clean cell โ€” don't type a formula over an existing value unless you're intentionally replacing it, because you'll lose the original. The second is reading the formula bar before you edit anything; that text up top is the ground truth, while the cell display is just a presentation of the result.

Third, copy formulas rather than retyping them when the logic is the same and only the row or column changes โ€” that's exactly what relative references were designed for. Fourth, name your important ranges (Formulas โ†’ Define Name) so that =SUM(SalesQ1) reads better than =SUM(B2:B25) in formulas you'll come back to later. Named ranges turn cryptic spreadsheets into self-documenting ones.

Another small habit with outsized payoff is using tables. Select your data, press Ctrl+T, and Excel converts the range into a structured table. From that point on, formulas can reference column names instead of cell letters โ€” =SUM(Sales[Revenue]) instead of =SUM(B2:B500). New rows added at the bottom automatically extend the table, and formulas that reference the column automatically pick up the new data without you needing to update anything. Tables are one of those Excel features that experienced users rely on every day and beginners often don't discover for years.

Finally, get comfortable with the IFERROR wrapper. When you build a formula that might throw an error (lookups, divisions, anything dependent on incomplete data), wrap it like =IFERROR(your_formula, "") to display a blank instead of an angry red error code. Or pass a default value: =IFERROR(VLOOKUP(...), "Not found"). Spreadsheets you share with non-Excel users look dramatically more professional when error cells are handled gracefully instead of bleeding #N/A across the page.

Take the Excel Skills Quiz

Writing your first dozen formulas in Excel is mostly about repetition. The equals sign, the operators, the reference style, the function syntax โ€” all of it becomes second nature once you've done it a few hundred times. Until then, keep this guide open in a tab and reach for it whenever a formula isn't doing what you expected. The errors you hit while learning are the fastest way to actually understand what Excel is doing under the hood. A formula that throws #VALUE! teaches you more about data types in five seconds than reading a textbook does in five hours.

If you take one thing away from this article, make it the habit of referencing cells instead of hard-coding values. The moment you stop typing numbers directly into formulas and start pointing at other cells, your spreadsheets transform from static calculators into living documents that update themselves. Change a single input and watch a dozen downstream cells recalculate instantly. That cascading recalculation is the whole reason Excel exists โ€” every shortcut, every function, every dollar-sign reference exists to make that cascade work the way you want it to.

The next layer beyond the basics โ€” lookups, conditional aggregations like SUMIFS and COUNTIFS, the newer dynamic array functions like FILTER and SORT โ€” all build on this same equals-sign foundation. Get the foundation solid and the rest comes much faster than you'd expect.

Open a new workbook right now, type =10+5 in a cell, press Enter, and you've already taken the first real step. Everything else is just adding vocabulary on top of that one habit. From there it's a short climb to writing the formulas that automate your weekly reports, balance your household budget, or untangle the data dump your boss just dropped on your desk.

One more piece of practical advice โ€” when a formula gets complicated enough that you can't read it at a glance, break it into helper cells. Instead of nesting four functions into a single monster expression, put each step in its own cell and chain them. You'll debug faster, your collaborators will thank you, and you can always collapse it back into a single formula later if performance demands it. The pros do this all the time. Compactness isn't a virtue when readability suffers.

Excel Questions and Answers

How do I write a formula in Excel for beginners?

Click any empty cell, type an equals sign (=), then type your math or function. For example, =10+5 returns 15, and =SUM(A1:A10) totals the range A1 through A10. Press Enter to confirm. The result appears in the cell while the formula itself stays visible in the formula bar above the spreadsheet. Always start every formula with = โ€” without it, Excel treats your entry as plain text.

What does the equals sign do in Excel?

The equals sign tells Excel that what follows is a formula to be evaluated, not literal text. Type =2+2 and Excel calculates 4. Type 2+2 without the equals sign and the cell just displays the characters 2+2 as text. Every Excel formula โ€” from simple arithmetic to complex nested functions โ€” must begin with the equals sign. It's the signal that says calculate this, don't just display it.

What is the formula bar in Excel?

The formula bar is the long input box just above the column letters. When you click a cell, the formula bar shows what's actually inside it โ€” typically the formula โ€” while the cell itself displays the result of that formula. So if cell A1 contains =10+5, the cell shows 15 but the formula bar shows =10+5. You can also type formulas directly into the formula bar, which gives you more room to work on long expressions.

What is operator precedence in Excel?

Operator precedence is the order in which Excel evaluates parts of a formula. It follows PEMDAS โ€” Parentheses first, then Exponents, then Multiplication and Division, then Addition and Subtraction. So =2+3*4 returns 14 (not 20) because the multiplication runs before the addition. Use parentheses to override the default order: =(2+3)*4 returns 20. When in doubt, add parentheses for clarity โ€” extra ones never hurt.

What is the difference between relative and absolute cell references?

A relative reference like A1 adjusts when you copy the formula โ€” copy =A1+B1 down one row and it becomes =A2+B2. An absolute reference like $A$1 stays fixed no matter where you copy the formula. The dollar signs lock the column and row. Press F4 after typing a reference to cycle through the four variants: A1, $A$1, A$1, $A1. Use absolute references when one cell (like a tax rate or constant) needs to feed every formula in a copied range.

How do I use the SUM function in Excel?

Type =SUM( in any cell, then drag across or type the range you want to total, then close the parenthesis. For example, =SUM(A1:A10) adds every value in A1 through A10. The colon means inclusive range. You can also sum multiple ranges by separating them with commas: =SUM(A1:A10, C1:C10). The fastest way to insert SUM is the AutoSum shortcut โ€” click a cell below a column of numbers and press Alt+=.

What are function arguments in Excel?

Function arguments are the inputs you pass to a function inside its parentheses, separated by commas. For example, in =VLOOKUP(A2, B2:D50, 3, FALSE), there are four arguments: the lookup value (A2), the table range (B2:D50), the column index (3), and the match type (FALSE). Excel's tooltip pops up as soon as you type the opening parenthesis and shows which arguments the function expects, in order. Required arguments are listed plainly; optional ones appear in brackets.

How do I fix common Excel formula errors?

The error code tells you the cause. #DIV/0! means dividing by zero or an empty cell โ€” wrap with IFERROR. #NAME? means a misspelled function or undefined name โ€” check spelling and quoting. #VALUE! means math on non-numeric data โ€” verify the cells contain numbers. #REF! means a referenced cell was deleted โ€” restore or update the reference. #N/A means a lookup didn't find a match โ€” confirm the lookup value exists in the table. Use Trace Precedents (Formulas tab) to see which cells feed the broken formula.
โ–ถ Start Quiz