Data

Excel interview questions

Excel interviews probe whether you can turn raw spreadsheets into reliable analysis: lookups and dynamic references, aggregation with conditional and array formulas, PivotTables, data cleaning, and building models that stay correct when inputs change.

6 questions (2 easy · 2 medium · 2 hard), each with what a strong answer covers and where people lose the point. Free to read, no account.

On this page (6 questions)

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

Warm-up

What 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.

Where people lose the point

  • 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.
Link to this question

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

Warm-up

What 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.

Where people lose the point

  • 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).
Link to this question

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

Core

What 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).

Where people lose the point

  • 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.
Link to this question

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

Core

What 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.

Where people lose the point

  • 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.
Link to this question

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

Hard

What 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.

Where people lose the point

  • 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.
Link to this question

6.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

What 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.

Where people lose the point

  • 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.
Link to this question
No account needed

Answer one real Excel question now

A question a Excel panel actually asks, answered out loud, scored on what you said and how you said it. Under two minutes, and nothing to sign up for.

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

We never store the audio. Your answer is deleted within 24 hours unless you save the result.

How Excel answers get judged

The weights a Excel interviewer is holding, whether or not they say so out loud. Round Zero scores your practice answers against exactly these, and quotes your own words back as the evidence for each.

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 →

Now say them out loud

You have read what strong Excel answers contain. The next thing that moves the needle is producing one under time, out loud, and finding out where it falls apart.

  • These questions asked back, with follow-ups
  • Flashcards for the ones you keep missing
  • A scored mock that quotes your own answers

Browse every skill

Practising Excel: common questions

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. The Excel path runs free inside Round Zero: lessons, practice questions and flashcards. Drills are unlimited on every plan, free included. So is the full scorecard. Free also covers 3 complete scored interviews, no card.
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.