Excel Practice Test

โ–ถ

Type a formula, drag the fill handle, and suddenly the numbers turn to nonsense. Cells point to the wrong rows. Totals reference blank cells. The culprit is almost always a missing dollar sign. In Excel, the $ symbol freezes part of a cell reference so it does not shift when you copy a formula across rows or columns.

That tiny symbol is the difference between a worksheet that scales beautifully and one that quietly breaks every time you fill down. Spreadsheet pros use it without thinking. Beginners stare at #REF! errors and assume Excel is broken. It's not. The fix is almost always learning where to drop the dollar sign.

Here is the short answer. The dollar sign creates an absolute reference. Put a $ before the column letter (like $A1) and the column stays put when you copy. Put one before the row number (like A$1) and the row stays put. Use both ($A$1) and the cell is locked solid. Master this one symbol and you unlock everything from compounding interest to tax-rate lookups across Excel formulas you reuse every day.

By default, every reference you type is relative. Write =A1+B1 in cell C1, copy it down to C2, and Excel quietly rewrites the formula as =A2+B2. That auto-shift is brilliant for sums, averages, and most everyday math.

But sometimes you need a value to stay fixed. The sales tax rate. A currency conversion. A single header row. Drag the formula and a relative reference will wander off the grid. The $ tells Excel to leave that part alone. It's the simplest, most powerful productivity tool the program has.

You do not have to type the dollar signs by hand. Click inside a formula on the reference you want to lock, then press F4 on Windows. Excel cycles through the four states: A1, then $A$1, then A$1, then $A1, then back. On a Mac without function keys, hit Command + T.

The shortcut saves time and prevents typos in long formulas where one missing $ can throw off an entire pivoted model. Once your fingers learn F4, you'll never type a dollar sign by hand again.

Mixed references are where Excel power users live. A$1 locks the row but lets the column move. $A1 locks the column but lets the row move. Picture a multiplication table. Headers run across row 1 and down column A. Your formula in B2 is =$A2*B$1. Drag it right and the row 1 reference stays. Drag it down and the column A reference stays. One formula. Fills the whole grid. No retyping.

Sales tax is the classic teaching example. Suppose B1 holds 0.075 for a 7.5% tax. Your prices are in column A, starting at A2. In B2 you write =A2*$B$1. Copy down through 500 rows of prices and every formula multiplies the row's price by the same locked tax cell.

Without the dollar signs, B3 would point at B2 (which is empty or wrong), B4 at B3, and your tax column collapses into garbage. The same logic applies to currency conversion, discount percentages, commission rates, and any fixed-value multiplier you reuse across thousands of rows.

VLOOKUP is the other place beginners get burned. The lookup table needs to stay put no matter which row you copy to. Write =VLOOKUP(A2, E2:G100, 3, FALSE), drag it down, and Excel slides the table array to E3:G101, then E4:G102. By row 50 you are searching half a table.

Dollar Sign Quick Facts

๐Ÿ”
4
Reference states cycled by F4
๐Ÿ”’
$A$1
Fully absolute reference
โŒจ๏ธ
F4
Windows shortcut to toggle $
๐Ÿ“…
1985
Year Excel 1.0 introduced $ syntax
The 30-Second Answer

The $ in Excel makes part of a cell reference absolute. $A$1 locks both the column and the row. A$1 locks only the row. $A1 locks only the column. Locked parts do not shift when you copy or fill the formula. Press F4 to cycle through the four states without typing dollar signs by hand.

Lock it with =VLOOKUP(A2, $E$2:$G$100, 3, FALSE). Now every row searches the full range. The pattern repeats with INDEX, MATCH, XLOOKUP, COUNTIF, SUMIFS, and just about every lookup function in Excel functions. If you take one rule away from this article, make it this: lookup ranges always get dollar signs.

Press F4 once and both the column and row lock. Press again and only the row locks. Press a third time and only the column locks. Press a fourth and the reference goes back to relative. The cycle matters because dragging direction decides which lock you need.

Filling a formula down a column? You probably need to lock the row part of any fixed reference. Filling across? You probably need to lock the column. Test on a small block of 2 or 3 cells before applying to 10,000 rows. A 30-second sanity check beats unwinding a broken model.

Modern Excel tables introduced a different kind of locking. When you reference a column inside a Table object, the syntax looks like Table1[@Price] instead of A2. Structured references behave more like absolutes by default; they follow the column even when you copy across.

But the dollar sign still appears in mixed table refs like Table1[[#This Row],[Price]]:[Tax]. Knowing both styles helps when you read older spreadsheets and modern ones side by side. The good news is that Excel converts structured references to traditional ones automatically the first time you copy them outside the table.

Not every $ in Excel is a reference. Cells formatted as Currency or Accounting show the dollar symbol as part of the number's appearance, not its value. Press Ctrl + Shift + 4 (or Ctrl + Shift + $ on a US keyboard) to apply currency formatting to selected cells.

The underlying number stays 1234.5; only the display changes to $1,234.50. Do not confuse this cosmetic $ with the absolute-reference $ inside formulas. They look identical but do completely different jobs. One controls how a number looks, the other controls how a reference behaves.

The mistake most new users make is locking too much or too little. Lock everything in a formula and dragging does nothing useful, because every cell shows the same answer. Lock nothing and a carefully built formula falls apart on the second row.

The fix is to ask, for each reference, should this move when I copy? If yes, leave it relative. If no, add a $. If the answer depends on direction (down vs right), use a mixed reference. Walk through this checklist for every new formula you write until it becomes automatic.

When a formula gives a wrong answer after copying, do not retype the whole thing. Click the cell, then Formulas > Trace Precedents. Excel draws blue arrows showing exactly which cells the formula points at.

If those arrows wander to empty cells or the wrong rows, you have a missing $. Add the dollar signs, recopy the formula, and the arrows snap into place. This visual check beats squinting at A1-B2-C3 notation every time. It also helps spot the rare case where the wrong cell is locked.

Loan amortization tables are an absolute-reference workout. Principal and rate live in fixed cells (say B1 and B2). The monthly payment formula in B5 needs =PMT($B$2/12, $B$3, -$B$1).

Four Reference Types Side by Side

๐Ÿ”ด Relative (A1)

No dollar signs. Both column and row shift when you copy or fill. Use for everyday row-by-row math like sums, averages, and differences where the reference should walk in step with the cursor.

๐ŸŸ  Absolute ($A$1)

Both locked. Reference never moves no matter where you copy it. Use for tax rates, conversion factors, exchange rates, and any single-cell input that should drive many rows.

๐ŸŸก Mixed Row ($A1)

Column locked, row free. Use when filling down where one column stays fixed across many rows. Common when a left-most label column drives multiple right-hand calculations.

๐ŸŸข Mixed Column (A$1)

Row locked, column free. Use when filling across where one header row stays fixed. Perfect for headers in row 1 that drive calculations spanning many columns.

When to Use Each Reference

๐Ÿ“‹ Simple Sums

Stick with relative references like =A2+B2. Drag down and each row sums its own pair of cells. No dollar signs needed. Relative refs are perfect for row-by-row math where every formula should walk in step with the rows. Sums, differences, averages, products, and other column-aligned math are all natural fits for relative refs. If you find yourself reaching for a dollar sign in a pure column-by-column sum, take another look. You probably don't need it.

๐Ÿ“‹ Tax or Rate

Put the rate in one cell, say B1. In your formula use $B$1. Now every row multiplies its price by the same locked rate cell. Change B1 once and every row updates instantly. This pattern works for any fixed multiplier: tax rates, discount percentages, conversion factors, commission rates, inflation adjustments. The single source of truth makes your workbook easy to audit and easy to update when the rate changes.

๐Ÿ“‹ Lookup Tables

Lock the table array in VLOOKUP, INDEX, MATCH, and XLOOKUP. =VLOOKUP(A2, $E$2:$G$100, 3, FALSE) keeps the table fixed as you copy. Without the dollar signs, the table walks down with each row and your lookups go off the bottom of the data, returning #N/A errors that confuse everyone reviewing the report. Treat lookup ranges as fixed by default. You can always remove the $ later if you really meant the range to walk.

๐Ÿ“‹ Grid Fill

Use mixed references. =$A2*B$1 fills an entire multiplication grid. Column A and row 1 each lock from their own direction. One formula, dragged across and down, fills the whole table. The same pattern shows up in pivot-style summaries, cross-tab reports, and any place where you have headers running across the top and labels running down the side. Mixed references are the workhorse of grid-based modeling.

๐Ÿ“‹ Conditional Formatting

Custom-formula conditional formatting rules use dollar signs to control which cells get evaluated. To highlight an entire row when a value in column F is overdue, use =$F2="Overdue". The $F locks the column so each row's formula still looks at column F, while the row part walks with the selection. Get the mix wrong and the formatting paints the wrong cells or nothing at all.

Drag down a 360-row 30-year schedule and the rate cell, term cell, and principal cell all stay put. Without dollar signs, row 6 would look for the rate in B3, row 7 in B4, and the model would explode by row 10. This is also where many Excel certification questions test you.

References across sheets follow the same rules. =Sheet2!A1 is relative; =Sheet2!$A$1 is absolute. The sheet name does not need a dollar sign, only the cell coordinates.

Even in 3D references like =SUM(Sheet1:Sheet10!$A$1), the dollar signs lock the cell while the sheet range stays fixed by syntax. Mastering this lets you build consolidated dashboards that pull from many sheets without breaking when you fill formulas across a summary tab.

One more thing. If you keep seeing #REF! errors after copying, you almost certainly deleted a cell that an absolute reference was pointing at. Check the formula bar. The broken reference will show as #REF! inside the formula.

Restore the deleted cell with Ctrl + Z, or rewrite the formula with a corrected $-prefixed reference. Save often. Excel does not warn you before a fill operation breaks things, and there is no undo after the file is closed. Habit beats hope here.

Named ranges are a slick alternative to typing $A$1 everywhere. Highlight a cell or range, type a name in the Name Box (top-left, next to the formula bar), and press Enter. Now you can write =Price*TaxRate instead of =A2*$B$1. Named ranges are absolute by default and far easier to read in long formulas.

They also make a workbook self-documenting. Six months from now, =Revenue-COGS-Expenses is obvious. =A2-B2-C2 is a puzzle. Use Formulas > Name Manager to view, edit, or delete every name in the workbook. Combined with smart dollar-sign use, named ranges make your spreadsheets readable by anyone, including future you.

The dollar sign in Excel is small but mighty. It is the difference between a formula that scales and one that quietly corrupts your data. Lock with $ before the column, the row, or both, depending on how you plan to copy.

Use F4 to cycle through states. Test on a few rows before filling thousands. With absolute and mixed references in your toolkit, you will write formulas once and reuse them across an entire workbook.

Conditional formatting is another spot where dollar signs trip people up. When you write a custom formula rule, the cell reference at the top of the formula box defaults to the active cell. Excel applies the rule across your selection by shifting that reference relative to each cell.

Want to highlight an entire row when a status column says Overdue? Select your data range, open Conditional Formatting > New Rule > Use a formula, and enter =$F2="Overdue". Lock the column with $F but leave the row free. As Excel walks down the selection, it checks F2, then F3, then F4, and lights up the whole row each time the test passes.

Pivot tables, dynamic arrays, and the new spilled formulas in Excel 365 reduce the need for dollar signs in some workflows. SORT, FILTER, UNIQUE, and XLOOKUP often spill results without any copying at all. The dollar sign still matters when you reference a fixed input from another cell, but you'll find yourself reaching for it less often as you adopt dynamic arrays.

Absolute Reference Checklist Before You Copy

Identify which references should move with each row (leave them relative)
Identify which should stay fixed (add $ to column letter, row number, or both)
Use F4 (Windows) or Command + T (Mac) to cycle through states quickly
Test the formula on 2 to 3 rows before filling thousands
Run Formulas > Trace Precedents if a copy produces #REF! or wrong totals
Lock lookup tables in VLOOKUP, INDEX, MATCH, and XLOOKUP every time
Use mixed references for grid-style fills across rows and columns
Press Ctrl + Z immediately if a fill breaks the model, before saving
Practice Excel Formulas Now

That said, dollar signs are not going anywhere. Most spreadsheets in the wild were built before dynamic arrays existed. Auditing financial models, fixing client workbooks, or maintaining a legacy sales report all require fluency in the old syntax. Learn both styles. They complement each other in modern Excel work.

If you're studying for a certification like the Microsoft Office Specialist (MOS) Excel Associate or Expert exams, expect at least one or two questions on absolute and mixed references. The test often shows a formula and asks what happens when you copy it from B2 to D5. Walk through each reference: which parts have dollar signs, and which way are you dragging?

Practical interview questions go further. A hiring manager might ask you to design a commission calculator where the rate sits in one cell and gets applied to 100 rows of sales. The right answer involves an absolute reference to the rate cell, a relative reference to each row's sales figure, and a dragged formula that fills the column in seconds.

Ready to test what you know? The practice quizzes below cover dollar signs, references, formulas, and dozens of other functions you'll meet in the real workplace. Start with the formulas quiz to drill absolute references, then work through the broader Excel tests to round out your skills before your next interview or exam.

Let's walk through one more end-to-end example. Imagine you're building a sales commission tracker. Column A has salesperson names. Column B has their monthly sales. Cell E1 holds the commission rate, say 0.08 for 8 percent. In C2 you write =B2*$E$1. The B2 reference is relative because it should walk down with each row.

The $E$1 is fully absolute because the commission rate is the same for everyone. Drag the formula down 50 rows and Excel computes each person's commission correctly. Want to test a 10 percent rate instead? Change E1 to 0.10. Every commission updates instantly. That's the power of locking the rate cell with dollar signs.

Now suppose you want different rates per tier. E1 holds the bronze rate, E2 holds silver, E3 holds gold. In column D you have each person's tier. Now you'd use VLOOKUP with an absolute table range to pull the right rate per row. The combination of dollar signs and lookup functions is where Excel really starts to feel like a programming language.

Spreadsheets are everywhere. Finance, marketing, HR, supply chain, operations, education, healthcare. Almost every white-collar job touches Excel at some point. And every single one of those jobs benefits from clean, scalable formulas that don't break when you fill them down.

The dollar sign is your secret weapon. Use it wisely, test before you trust, and your workbooks will scale from 10 rows to 100,000 without breaking a sweat. Pair it with named ranges, structured table references, and dynamic arrays for the cleanest, most readable formulas your team has ever seen.

One quick word on Google Sheets. The dollar sign syntax is identical. =A2*$B$1 means the same thing in Sheets as in Excel. F4 also cycles through reference states on Windows, and Command + Shift + Enter or Command + T does the same on Mac. If you switch between the two platforms, your absolute-reference muscle memory carries straight across.

Finally, do not over-engineer. Most everyday formulas are simple sums or averages that work fine with relative references. Save the dollar signs for the cells that genuinely need locking: rates, totals, lookup tables, headers, constants. Apply them where they matter and your worksheets stay fast, readable, and bulletproof.

Working with Absolute References

Pros

  • Formulas scale instantly across thousands of rows
  • One source cell controls a whole sheet (tax rates, currency)
  • Lookup tables stay fixed in VLOOKUP and XLOOKUP
  • Mixed refs let one formula fill an entire grid
  • F4 cycles all four states with one keypress

Cons

  • Easy to lock too much and break the fill behavior
  • Difficult to read in long formulas with many $ symbols
  • #REF! errors appear if the locked cell is later deleted
  • Mac users without function keys must remember Command + T
  • Confused with currency formatting by new learners
Take the Full Excel Practice Test

Excel Questions and Answers

What does the $ symbol do in an Excel formula?

It makes part of a cell reference absolute, so that part does not change when you copy the formula. $A$1 locks both the column and row. $A1 locks only the column. A$1 locks only the row. Anything without a $ stays relative and shifts as you fill the formula across or down.

How do I add a $ sign quickly in Excel?

Click inside the formula on the reference you want to lock, then press F4 on Windows or Command + T on a Mac. Each press cycles to the next state: A1, $A$1, A$1, $A1, and back. This is much faster than typing the dollar signs by hand and avoids typos in long formulas.

What is the difference between relative and absolute references?

A relative reference like A1 changes when you copy the formula. Drag =A1+B1 from row 1 to row 2 and it becomes =A2+B2. An absolute reference like $A$1 stays fixed; copy it anywhere and it still points at A1. Most formulas use a mix of both depending on which values should move and which should stay put.

When should I use a mixed reference like $A1 or A$1?

Use a mixed reference when you copy a formula in two directions and want one part to move while the other stays. $A1 locks column A but lets the row change, great for filling down with a fixed lookup column. A$1 locks row 1 but lets the column change, ideal for filling a header value across columns.

Does the $ sign affect the value or only the formula?

Inside a formula, the $ only affects how the reference behaves when copied; the calculated value of any single cell is exactly the same with or without the dollar sign. The $ that appears in front of a number like $1,234.50 is currency formatting and changes only the display, not the underlying number.

Why do I get #REF! errors after copying a formula?

A #REF! error usually means the formula now points at a cell that no longer exists, often because you deleted a row or column the reference depended on. Click the broken cell, look at the formula bar, and use Trace Precedents to see exactly where the formula is pointing before you fix the dollar signs or restore the deleted cell.

โ–ถ Start Quiz