Data

Excel interview questions & practice path

Lookups, pivot tables, and modeling under interview pressure. Learn what interviewers probe, drill the questions until answers come fast, then prove it in a scored mock, all in one Excel path inside Round Zero.

  • Concept lessons that explain the why, not just the answer
  • Practice questions with adaptive follow-ups and flashcards
  • A scored mock with evidence quoted from your own answers

Sample Excel questions

What a strong answer covers, and the mistakes interviewers watch for. The scored path drills every one with live follow-ups.

What is the difference between VLOOKUP and INDEX/MATCH, and when would you prefer one over the other?

easy

A strong answer covers

  • VLOOKUP searches the leftmost column of a range and returns a value a fixed number of columns to the right; it cannot look to the left of the lookup column.
  • INDEX/MATCH decouples the lookup column from the return column: MATCH finds the row position, INDEX returns the value from any column, so it can look left or right.
  • INDEX/MATCH does not break when columns are inserted or deleted because it references columns directly rather than by a hardcoded offset number.
  • Mention XLOOKUP as the modern replacement that handles both directions, has a built-in if-not-found argument, and defaults to exact match.

Common mistakes

  • Forgetting the fourth VLOOKUP argument (range_lookup) and getting approximate-match errors because it defaults to TRUE on unsorted data.
  • Claiming VLOOKUP can look to the left, which it cannot.
  • Not mentioning that a hardcoded column index in VLOOKUP silently breaks when columns are added or removed.

Explain absolute, relative, and mixed cell references and why the dollar sign matters when copying formulas.

easy

A strong answer covers

  • Relative references (A1) shift both row and column when a formula is copied; the reference is relative to the formula's position.
  • Absolute references ($A$1) lock both row and column so the reference does not move when filled across or down.
  • Mixed references lock only one part: $A1 locks the column, A$1 locks the row, which is essential for building multiplication-table style grids.
  • Give a concrete case such as multiplying a column of values by a single tax-rate cell that must stay fixed as you fill down.

Common mistakes

  • Getting wrong totals because a rate or constant cell was left relative and drifted when the formula was copied.
  • Not knowing the F4 key cycles through the reference types.
  • Confusing which part $ locks (it locks the item immediately to its right, the column or the row).

How would you sum or count values based on multiple conditions across a data set?

medium

A strong answer covers

  • Use SUMIFS(sum_range, criteria_range1, criteria1, ...) and COUNTIFS for multiple AND conditions; note SUMIFS puts the sum_range first while SUMIF puts it last.
  • Criteria can use operators as text like ">100", "<>0", or wildcards (*, ?) for partial text matches, and can reference a cell with concatenation like ">"&B1.
  • For OR logic across one field, add multiple SUMIFS together or use SUMPRODUCT; explain that all criteria ranges must be the same size as the sum range.
  • Mention date-range summing by using two criteria on the same date column (>= start and <= end).

Common mistakes

  • Swapping the argument order between SUMIF and SUMIFS and getting a wrong or error result.
  • Treating multiple criteria as OR when SUMIFS applies them as AND.
  • Mismatched range sizes between criteria and sum ranges, which causes a #VALUE! error.

Walk me through building a PivotTable to summarize sales by region and month, and how you would keep it fresh as new data arrives.

medium

A strong answer covers

  • Convert the source to an Excel Table first so the PivotTable range expands automatically as rows are added, avoiding stale fixed ranges.
  • Drag Region to Rows, Month to Columns, and Sales to Values, then set the value field to Sum and format it; use Group on the date field to roll days into months.
  • Refresh with Refresh All (or right-click Refresh) to pull in new data; a Table source plus refresh keeps it current without rebuilding.
  • Add slicers or a report filter for interactivity, and change Summarize Values By to Average, Count, or % of Column Total as the question demands.

Common mistakes

  • Pointing the PivotTable at a fixed A1:D500 range so new rows are silently excluded.
  • Forgetting that PivotTables do not auto-update and must be refreshed after source data changes.
  • Leaving blank rows or mixed data types in the source, which breaks grouping and field detection.

You receive a messy export with duplicate rows, inconsistent text casing, and numbers stored as text. How do you clean it?

hard

A strong answer covers

  • Remove duplicates via Data > Remove Duplicates or dedupe with COUNTIFS/UNIQUE; clarify whether a whole-row or single-key duplicate is meant before deleting.
  • Fix text with TRIM to strip stray spaces, CLEAN for non-printing characters, and UPPER/LOWER/PROPER for casing; use Text to Columns or VALUE to convert text-numbers to real numbers.
  • Use Flash Fill or LEFT/RIGHT/MID/TEXTSPLIT to parse combined fields, and Find & Replace or SUBSTITUTE to standardize codes.
  • Prefer Power Query for a repeatable, auditable cleaning pipeline when the same messy export arrives regularly, since steps are recorded and re-runnable.

Common mistakes

  • Deleting duplicates in place without a backup or without confirming the dedupe key, losing legitimate rows.
  • Not spotting that numbers stored as text break SUM and lookups even though they look numeric (a green triangle or left alignment is the tell).
  • Doing everything by hand when the task recurs, instead of reaching for Power Query or a documented step list.

How would you build a financial model or dashboard so that changing a few input assumptions updates everything correctly and the model stays auditable?

hard

A strong answer covers

  • Separate inputs, calculations, and outputs into distinct areas or sheets, and drive all formulas off labeled input cells rather than hardcoding numbers inside formulas.
  • Use named ranges or Table references for readability, and IFERROR to handle divide-by-zero and missing lookups gracefully.
  • Support what-if analysis with Data Tables, Scenario Manager, or Goal Seek so multiple assumption sets can be compared without rewriting formulas.
  • Keep it performant and correct: avoid volatile functions (TODAY, OFFSET, INDIRECT) in large models, use Trace Precedents/Dependents and Evaluate Formula to audit, and add data validation to constrain inputs.

Common mistakes

  • Hardcoding assumptions inside formulas so a rate change must be edited in dozens of cells.
  • Overusing volatile or full-column array formulas that recalculate the whole workbook and make it slow.
  • No error handling or validation, so one bad input cascades #DIV/0! or #N/A through the whole model unnoticed.

How Excel answers are scored

Formula fluency and accuracy

40%

Picks the right function for the job and writes it correctly: lookups (XLOOKUP, INDEX/MATCH), conditional aggregation (SUMIFS, COUNTIFS, AVERAGEIFS), logical and text functions, and error handling with IFERROR. Uses absolute vs relative references ($) deliberately so formulas fill correctly, and explains what each argument does.

Data analysis and summarization

35%

Turns raw rows into insight using PivotTables, grouping, sorting, filtering, and charts. Cleans messy data (duplicates, trimming, splitting columns, type mismatches) and validates results, choosing the right tool such as a PivotTable over a wall of formulas when it fits.

Structure, integrity and efficiency

25%

Builds spreadsheets that stay correct and auditable: Excel Tables and named ranges, data validation, separation of inputs and calculations, and avoiding volatile or hardcoded values. Understands why full-column array formulas or excessive volatile functions slow a workbook and how to keep models performant.

Role tracks that include Excel

Related Data skills

All skills →

No spam. Unsubscribe anytime.

Ready to master Excel?

Sign up free. Your Excel path includes lessons, drills, flashcards, and a scored mock with feedback on what to fix.

  • Concept lessons plus practice questions
  • Flashcards for spaced repetition
  • A scored mock with evidence quotes

Questions & answers

What Excel interview questions should I practice?
Start with the core areas Excel interviewers probe: What is the difference between VLOOKUP and INDEX/MATCH, and when would you prefer one over the other; Explain absolute, relative, and mixed cell references and why the dollar sign matters when copying formulas.; How would you sum or count values based on multiple conditions across a data set. This page outlines strong answers and common mistakes, and the scored path drills each one with follow-ups.
Is the Excel practice free?
Yes, you can start a Excel path free inside Round Zero. It generates lessons, practice questions, flashcards, and a scored mock. Sign up to unlock the full drills and your evidence-backed scorecard.
How is this different from a Excel question list?
A static list gives you questions with no feedback. Round Zero runs a live scored practice that probes your actual answers, rotates difficulty, and tells you exactly what to fix, grounded in a Excel rubric.
How should I prepare for a Excel interview?
Learn the concepts, drill the questions until answers come fast, then prove it in a scored mock. Round Zero sequences all three so you know you are ready, not just that you read about Excel.
How is a Excel answer scored?
Excel answers are scored on formula fluency and accuracy, data analysis and summarization, structure, integrity and efficiency, with evidence quoted from what you actually said, so feedback is specific instead of generic praise.