Excel Practice Test

โ–ถ

Microsoft Excel is the world's most widely used spreadsheet software, part of the Microsoft 365 (formerly Office) suite. Used by over 750 million people globally, Excel is a core tool for data analysis, financial modeling, project management, business reporting, and countless professional applications across virtually every industry.

Whether you are a complete beginner learning to navigate cells and rows for the first time, or an experienced professional preparing for the MOS Excel certification or a job interview skills test, this guide covers the essential concepts, formulas, functions, and features that make Excel one of the most valuable software skills in the modern workplace.

Excel Basics: Understanding the Interface

Microsoft Excel organizes data in a grid of cells, each identified by a column letter and row number โ€” for example, cell A1 is in column A, row 1; cell C5 is in column C, row 5. A collection of cells is called a range (e.g., A1:D10 refers to all cells from A1 to D10). Each Excel file is called a workbook, and workbooks can contain multiple worksheets (tabs) that appear along the bottom of the screen.

The ribbon at the top of the Excel window organizes all commands into tabs: Home (formatting, clipboard, alignment), Insert (charts, tables, pivot tables), Page Layout (print settings), Formulas (function library, name manager), Data (import, sort, filter, data validation), Review (comments, track changes), and View (window arrangement, freeze panes).

Key navigation shortcuts every Excel user should know:

Understanding Excel's cell referencing system is fundamental to building formulas correctly. A regular cell reference like A1 is a relative reference โ€” it adjusts automatically when you copy the formula to another cell. An absolute reference like $A$1 remains fixed regardless of where the formula is copied. A mixed reference like $A1 or A$1 fixes either the column or the row but not both.

750M+
Excel users worldwide
500+
Built-in functions in Excel 365
1,048,576
Rows per worksheet
16,384
Columns per worksheet (A to XFD)
#1
Most in-demand Office skill in job postings
$140
Microsoft 365 Personal annual subscription

Essential Excel Formulas and Functions

Excel formulas always begin with an equals sign (=). Functions are pre-built formulas that perform specific calculations. Mastering the most commonly used functions is the single highest-leverage Excel skill for both workplace productivity and certification exams.

Mathematical functions:

Logical functions:

Text functions:

Date and time functions:

๐Ÿ“‹ VLOOKUP

VLOOKUP โ€” Vertical Lookup

VLOOKUP is one of the most commonly tested Excel functions in job interviews and certification exams. It searches for a value in the first column of a table and returns a corresponding value from another column in the same row.

Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

  • lookup_value โ€” what you are looking for (e.g., an employee ID)
  • table_array โ€” the table range containing the data (e.g., A2:D100)
  • col_index_num โ€” which column to return (1 = first column in table_array)
  • range_lookup โ€” FALSE for exact match, TRUE for approximate match (sorted data)

VLOOKUP limitations: it only looks right (cannot return a value to the left of the lookup column), and it returns the first match found. For more flexible lookups, use INDEX/MATCH or XLOOKUP.

๐Ÿ“‹ XLOOKUP

XLOOKUP โ€” The Modern Replacement for VLOOKUP

XLOOKUP is available in Excel 365 and Excel 2021, and is the recommended alternative to VLOOKUP for all new workbooks. Unlike VLOOKUP, XLOOKUP can return values to the left of the lookup column, handles missing values gracefully, and defaults to exact match.

Syntax: =XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

Example: =XLOOKUP(D2, A2:A100, C2:C100, 'Not Found') โ€” finds D2 in column A, returns the corresponding value from column C, or 'Not Found' if no match exists.

๐Ÿ“‹ INDEX/MATCH

INDEX/MATCH โ€” The Power Combination

INDEX/MATCH is a two-function combination that surpasses VLOOKUP in flexibility and is universally used in professional financial modeling. INDEX returns a value from a specified position in a range; MATCH returns the position number of a value within a range.

Combined: =INDEX(return_range, MATCH(lookup_value, lookup_range, 0))

Advantages over VLOOKUP: can look left, right, or in any direction; not broken by inserting columns; slightly faster on large datasets; supports two-way lookup when combined with two MATCH functions. Most financial analysts and advanced Excel users prefer INDEX/MATCH over VLOOKUP for all but the simplest lookups.

๐Ÿ“‹ COUNTIF / SUMIF

COUNTIF and SUMIF โ€” Conditional Aggregation

COUNTIF counts cells in a range that meet a condition. SUMIF sums values based on a condition in another range. Both support wildcards (* for any text, ? for single character).

=COUNTIF(range, criteria) โ€” e.g., =COUNTIF(A2:A100, 'Sales') counts cells containing 'Sales'

=SUMIF(range, criteria, sum_range) โ€” e.g., =SUMIF(B2:B100, 'Q1', C2:C100) sums column C wherever column B says 'Q1'

COUNTIFS and SUMIFS accept multiple conditions and are essential for multi-criteria analysis. They are frequently tested in Excel skills assessments and MOS exams.

FREE Excel MCQ Questions and Answers
Microsoft Excel Advanced Formula and Macro Creation 2

Pivot Tables and Data Analysis

Pivot tables are Excel's most powerful data analysis feature โ€” they allow you to summarize, group, and analyze large datasets interactively without writing a single formula. A pivot table can transform thousands of rows of raw data into a meaningful summary in seconds.

Creating a pivot table: Select your data range (including headers), go to Insert โ†’ PivotTable, choose where to place the table (new worksheet or existing), and click OK. The PivotTable Fields pane on the right lets you drag field names into four areas: Rows, Columns, Values, and Filters.

Key pivot table concepts:

Refreshing pivot tables: Pivot tables do not automatically update when source data changes. Right-click anywhere in the pivot table and choose 'Refresh' to update, or go to PivotTable Analyze โ†’ Refresh All. For best practice, convert your source data to an Excel Table (Ctrl+T) before creating the pivot table โ€” Tables expand automatically and make refresh unnecessary for new rows.

Power Pivot and Power Query: For very large datasets (millions of rows) or data from multiple sources, Excel 365 and Excel 2021 include Power Query (for importing and transforming data) and Power Pivot (for building data models with relationships between tables). These tools extend Excel's analytical capabilities well beyond what traditional pivot tables support.

Excel Charts and Data Visualization

Excel offers a comprehensive chart library for visualizing data. Selecting the right chart type for your data and your audience's needs is a fundamental skill for professional reporting.

Bar and Column charts: Best for comparing discrete categories. Column charts (vertical bars) are ideal for showing rankings or category comparisons. Bar charts (horizontal bars) work better when category labels are long.

Line charts: Best for showing trends over time. Use a line chart when you have a continuous time axis (months, quarters, years) and want to show the direction and rate of change.

Pie and donut charts: Show part-to-whole relationships. Best used with 4โ€“6 segments maximum โ€” too many slices make pie charts unreadable. Donut charts are a modern alternative that allow a label in the center ring.

Scatter plots and bubble charts: Show correlations between two variables (scatter) or three variables (bubble โ€” x, y, and bubble size). Essential for statistical analysis and data science presentations.

Sparklines: Tiny inline charts that fit inside a single cell, useful for showing trends alongside data in a table without taking up chart space. Available as Line, Column, and Win/Loss sparkline types.

Recommended Charts: Excel's 'Recommended Charts' option (Insert โ†’ Recommended Charts) analyzes your selected data and suggests the most appropriate chart types โ€” a useful starting point when you are unsure which chart best represents your data.

Advanced Excel Features

Beyond core functions and pivot tables, several advanced Excel features separate intermediate users from true power users in professional settings.

Data Validation: Restricts what can be entered in a cell โ€” dropdown lists, number ranges, date limits, custom formula-based rules. Data validation is essential for building robust spreadsheets that prevent data entry errors. Access via Data โ†’ Data Validation.

Conditional Formatting: Automatically applies formatting (color fills, icons, data bars) to cells based on their values. Useful for highlighting outliers, heat maps, and dashboard-style reporting. Common rules include color scales (green-yellow-red), top/bottom 10%, and custom formula-based rules.

Named Ranges: Assigning a descriptive name to a cell or range (e.g., 'TaxRate' for cell F2) makes formulas more readable and maintainable. Named ranges also make absolute references unnecessary since named ranges behave as absolute by default.

Power Query (Get & Transform): Import data from external sources (databases, web pages, CSV files, SharePoint) and transform it automatically each time the query is refreshed. Power Query eliminates repetitive manual data cleaning tasks and is one of the most high-value productivity skills for data analysts.

Macros and VBA: Record repetitive sequences of actions as macros (no coding required) or write Visual Basic for Applications (VBA) code for full automation. VBA can automate complex multi-step processes, generate reports, interact with other Office applications, and build custom functions. For a deeper dive into Excel formulas and automation, see our guide on Excel formulas for mastery.

Navigate cells, rows, columns, and sheets using keyboard shortcuts
Enter, edit, and format data (number formats, fonts, borders, fill colors)
Write basic SUM, AVERAGE, COUNT, MIN, MAX formulas
Use absolute ($A$1) and relative (A1) cell references correctly
Write IF, AND, OR, IFERROR logical functions
Use VLOOKUP or XLOOKUP to match data across tables
Use COUNTIF, SUMIF, and their multi-condition versions
Create and modify pivot tables to summarize data
Build line, column, and pie charts with proper labels and formatting
Apply conditional formatting and data validation rules
Sort and filter data using AutoFilter and Advanced Filter
Use Flash Fill and Text to Columns for data cleaning
Import external data using Power Query
Record and run basic macros
Protect worksheets and workbooks with passwords

Microsoft Excel Certification (MOS Exam)

The Microsoft Office Specialist (MOS) Excel certification is a globally recognized credential that validates your Excel proficiency for employers. The MOS certification program is administered through Certiport at authorized testing centers and is available at two levels:

MOS Excel Associate (MO-200): Tests core Excel skills including spreadsheet creation, formatting, formulas, charts, and data management. This certification is appropriate for candidates with 1โ€“3 years of Excel use in professional settings. The exam contains 35โ€“40 project-based tasks completed within 50 minutes.

MOS Excel Expert (MO-201): Tests advanced Excel features including Power Query, advanced formulas, custom number formats, complex charts, and data analysis tools. This level is appropriate for experienced users who work with Excel daily in analytical roles. Earning both MO-200 and MO-201 qualifies you for the MOS Expert recognition.

Both exams use a performance-based testing format โ€” you complete real tasks in a live Excel environment rather than answering multiple-choice questions. This approach tests applied knowledge rather than theoretical recall. For a complete MOS exam guide and preparation strategy, see our Microsoft Excel certification guide, which covers the exam blueprint, recommended study resources, and scoring methodology.

For job seekers, the MOS certification signals Excel competency to hiring managers who frequently test candidates with a skills assessment before making a hire. Preparing specifically for job interview Excel tests requires different practice than MOS certification prep โ€” see our guide on Excel skills test preparation for interviews for targeted preparation.

Microsoft Excel Advanced Data Analysis Tools 2
Microsoft Excel Advanced Formulas and Macros 2
Try Free Excel Practice Questions

What is the difference between Excel and Google Sheets?

Microsoft Excel and Google Sheets are both spreadsheet applications with similar core features. Excel offers more advanced analytical capabilities (Power Query, Power Pivot, VBA macros, more complex chart types) and is the industry standard in finance and enterprise settings. Google Sheets is free, cloud-native, and better for real-time collaboration between multiple users without a Microsoft subscription. Most formulas and features are compatible between the two, but complex Excel workbooks with macros or Power Pivot models do not transfer to Sheets cleanly.

What is VLOOKUP used for in Excel?

VLOOKUP (Vertical Lookup) is used to search for a value in the first column of a table range and return a corresponding value from another column in the same row. It is commonly used to match data from two lists โ€” for example, finding an employee's salary from a separate payroll table using their employee ID. VLOOKUP requires the lookup value to be in the first column of the table range. For more flexibility, modern Excel users prefer XLOOKUP or INDEX/MATCH.

How do I create a pivot table in Excel?

Select your data range (including column headers), then go to Insert โ†’ PivotTable. Choose where to place the pivot table (new or existing worksheet) and click OK. In the PivotTable Fields pane, drag field names to the Rows, Columns, Values, or Filters areas to define your summary. The pivot table updates as you drag fields. Right-click โ†’ Refresh to update data when the source changes.

What is the MOS Excel certification?

The Microsoft Office Specialist (MOS) Excel certification is an industry-recognized credential that validates Excel proficiency. The Associate level (MO-200) tests core skills; the Expert level (MO-201) tests advanced features. Both are performance-based exams administered at Certiport testing centers. The MOS certification is commonly listed as preferred in job postings for administrative, accounting, and data analysis roles.

What Excel version should I use?

Microsoft 365 (subscription) provides the latest Excel version with ongoing updates and access to the newest functions (XLOOKUP, LET, LAMBDA, dynamic arrays). Excel 2021 is a one-time purchase with functions up to its release date. Excel 2019 and 2016 are missing many modern functions. For professional use, Microsoft 365 is recommended due to its continuously updated function library and cloud features. Excel Online (free via browser) provides basic functionality without a subscription.

What are dynamic arrays in Excel?

Dynamic arrays, introduced in Excel 365, allow a single formula to automatically return results into multiple cells (a 'spill range'). Functions like SORT, FILTER, UNIQUE, SEQUENCE, and RANDARRAY leverage dynamic arrays. For example, =FILTER(A2:C100, B2:B100='Sales') returns all rows where column B equals 'Sales' โ€” automatically adjusting as the source data changes. Dynamic arrays have replaced many complex multi-cell array formulas (entered with Ctrl+Shift+Enter) from older Excel versions.
โ–ถ Start Quiz