Visualisation & dashboards — quiz
10 questions covering this module. Charts, conditional formatting, dashboard assembly and automation.
To highlight an entire row where C exceeds 1000, the formula rule is:
- =C2>1000
- =$C2>1000
- =$C$2>1000
- =C$2>1000
Answer: =$C2>1000 — Locking the column with $C makes every cell in the row test column C, while the row stays relative.
What does Stop If True do?
- Deletes the rule
- Prevents later rules from being evaluated when this one matches
- Freezes the cell
- Converts to a value
Answer: Prevents later rules from being evaluated when this one matches — It halts rule evaluation for matching cells, protecting the formatting from later rules.
What is the main problem with a 3-D column chart?
- It is slow
- Perspective distorts the values
- It cannot be printed
- It needs the Data Model
Answer: Perspective distorts the values — Depth and angle make bar heights harder to compare accurately.
When is a secondary axis appropriate?
- Always, for clarity
- When the two series use genuinely different units
- When there are many categories
- Never
Answer: When the two series use genuinely different units — Same-unit series on independent scales can imply relationships that are not real.
What should you use instead of VBA for repeatable data import and cleanup?
- Office Scripts
- Power Query
- Conditional formatting
- Data validation
Answer: Power Query — Power Query is refreshable, maintainable, and does not need macro-enabled files.
Why put Option Explicit at the top of a module?
- It runs faster
- Undeclared variables become errors instead of silent bugs
- It enables loops
- It is required for .xlsm
Answer: Undeclared variables become errors instead of silent bugs — It forces declaration, so a mistyped variable name is caught at compile time.
Which skill appears most consistently in practical Excel tests?
- VBA class modules
- Lookups and pivot tables
- Custom chart templates
- Power Pivot DAX
Answer: Lookups and pivot tables — Lookups and pivots are near-universal; the advanced tools appear at analyst level and above.
Which answer signals seniority in an interview?
- Listing every function you know
- Explaining when Excel was the wrong tool and what you used instead
- Saying you always use VBA
- Describing keyboard shortcuts
Answer: Explaining when Excel was the wrong tool and what you used instead — Judgment about tool fit reads as more experienced than feature recall.
Why place pivot output using a linked picture?
- It is faster
- It can be positioned freely without the pivot layout constraining the design
- It reduces file size
- It avoids refreshing
Answer: It can be positioned freely without the pivot layout constraining the design — The picture updates when the pivot does.
The test of a maintainable dashboard is:
- It uses macros
- Someone else can add data and refresh without help
- It has many charts
- It uses conditional formatting
Answer: Someone else can add data and refresh without help — Which is why raw data belongs on its own sheet.