Core navigation & data handling — quiz
8 questions covering this module. References, tables, sorting, filtering, validation and formatting.
You copy =$A2*B$1 from B2 to C3. What does it become?
- =$A2*B$1
- =$A3*C$1
- =$B3*C$2
- =A3*C1
Answer: =$A3*C$1 — The column lock on A holds, the row moves to 3; the row lock on 1 holds, the column moves to C.
Why prefer a Table over a plain range for a pivot source?
- It looks better
- It expands automatically as rows are added
- It compresses the file
- It enables VBA
Answer: It expands automatically as rows are added — Structured references grow with the data, so downstream pivots and charts pick up new rows.
Which error means a referenced cell was deleted?
- #VALUE!
- #REF!
- #N/A
- #NAME?
Answer: #REF! — #REF! indicates the reference itself is no longer valid.
Cell protection takes effect when:
- Cells are marked Locked
- The sheet is protected
- The file is saved
- A password is set on the file
Answer: The sheet is protected — Locked is only an attribute; it does nothing until Protect Sheet is applied.
Why build a pivot table on a Table rather than a range?
- It is faster
- The Table expands, so new rows are included automatically
- It uses less memory
- Ranges cannot be pivoted
Answer: The Table expands, so new rows are included automatically — A fixed range misses rows added later.
=SUM(Sales[Revenue]) is an example of:
- An array formula
- A structured reference
- A named range
- A dynamic array
Answer: A structured reference — Tables give structured references.
Custom format #,##0,,"M" displays 1250000 as:
- 1,250,000
- 1M
- 1,250K
- 1.25
Answer: 1M — Two commas divide by a million.
SUM returns 0 over cells that clearly contain numbers. Cause?
- Wrong formula
- The numbers are stored as text
- Hidden rows
- Circular reference
Answer: The numbers are stored as text — Text to Columns → Finish is the quickest fix.