Excel Practice Test

โ–ถ

What Is an Excel Cheat Sheet?

An Excel cheat sheet is a condensed quick-reference guide that puts the most-used formulas, keyboard shortcuts, and feature commands in one place. Whether you open Excel daily for data analysis or only occasionally for reporting, a solid cheat sheet cuts the time you spend searching help menus and trying to remember function syntax.

Excel holds over 400 built-in functions, hundreds of keyboard shortcuts, and dozens of data tools. No one memorizes all of them. What matters is knowing the 20% that handles 80% of real tasks โ€” and having a fast way to look up the rest.

This guide organizes the essential Excel cheat sheet into six categories: core formulas, keyboard shortcuts, pivot tables, conditional formatting, data tools, and exam prep tips for the Microsoft Office Specialist certification. Each section gives you syntax you can paste immediately and notes on when each feature applies.

Coverage includes Excel 2019, Excel 2021, Microsoft 365, and Excel Online. Most formulas and shortcuts work across all versions; where behavior differs, the guide notes it. The Microsoft 365 subscription version has the most features, including newer dynamic array functions covered later in the formulas section.

One more thing to keep in mind: a cheat sheet is most effective when you build it yourself. Use this guide as the foundation, then add the formulas and shortcuts you personally use most. Annotating it with your own examples โ€” the datasets you actually work with, the reports your team runs weekly โ€” turns a generic reference into something genuinely useful that you will reach for automatically rather than leaving in a bookmark you forget to open.

  • Formulas and Functions โ€” SUM, IF, VLOOKUP, INDEX/MATCH, COUNTIF, SUMIF
  • Keyboard Shortcuts โ€” Navigation, formatting, selection, formula entry
  • Pivot Tables โ€” Create, refresh, group, filter, and format summaries
  • Conditional Formatting โ€” Highlight cells, color scales, data bars, icon sets
  • Data Tools โ€” Sort, filter, dropdown lists, data validation, remove duplicates
  • Exam Prep โ€” MOS Excel 2019/365 exam domains and highest-value practice areas
400+
Built-in functions
200+
Keyboard shortcuts
~50
Functions used daily by analysts
1985
Year Excel launched (Mac v1.0)
750M+
Estimated global Excel users
1,048,576
Max rows per worksheet

Core Excel Formulas Cheat Sheet

The formulas below cover the functions that appear most often in professional spreadsheets. Each entry shows the syntax, a plain-English description, and a quick example you can paste directly into a cell.

SUM โ€” =SUM(A1:A10) โ€” Adds all values in a range. The most-used function in Excel. Use SUM over manual addition for any range larger than three cells because it auto-updates when rows are inserted or deleted.

AVERAGE โ€” =AVERAGE(B2:B20) โ€” Returns the arithmetic mean of a range. For a median use =MEDIAN(B2:B20). To average while ignoring zeros use =AVERAGEIF(B2:B20,"<>0").

IF โ€” =IF(A2>100,"Over","Under") โ€” Returns one value if a condition is TRUE and another if FALSE. Nest multiple IFs for branching logic: =IF(A2>90,"A",IF(A2>80,"B","C")). In Excel 365 and 2019, the cleaner alternative is IFS() which evaluates multiple conditions without nesting.

VLOOKUP โ€” =VLOOKUP(lookup_value,table_array,col_index,[range_lookup]) โ€” Searches the first column of a range and returns a value from a specified column in the same row. The fourth argument should almost always be FALSE for exact matches. A full breakdown of how to use it and when to switch to XLOOKUP is in the Excel VLOOKUP guide.

INDEX/MATCH โ€” =INDEX(return_range,MATCH(lookup_value,lookup_range,0)) โ€” The professional alternative to VLOOKUP. Unlike VLOOKUP, it can look left, handles column insertions without breaking, and runs faster on large datasets. MATCH finds the row position; INDEX returns the value at that position in any column you choose.

COUNTIF โ€” =COUNTIF(A1:A100,"Completed") โ€” Counts cells that match a single condition. For multiple conditions use COUNTIFS: =COUNTIFS(A1:A100,"Open",B1:B100,">500"). A practical walkthrough of both is in the dedicated Excel COUNTIF guide.

SUMIF / SUMIFS โ€” =SUMIF(A:A,"East",C:C) โ€” Adds values in column C where the matching cell in column A equals East. SUMIFS extends this to multiple criteria columns simultaneously.

Text functions โ€” =LEN(A1) returns character count. =TRIM(A1) removes extra spaces. =LEFT(A1,5) extracts the first five characters. =A1&" "&B1 joins two text strings โ€” the modern alternative to CONCATENATE.

Date functions โ€” =TODAY() inserts today's date. =NOW() adds current date and time. =DATEDIF(start,end,"Y") calculates complete years between two dates โ€” used for age calculations and tenure reports. For deeper coverage of nested examples and error-handling patterns, the Excel formulas guide walks through each function with real-world use cases.

Formula Categories at a Glance

๐Ÿ”ด Math and Statistical

SUM, AVERAGE, MEDIAN, MIN, MAX, LARGE, SMALL, ROUND, MOD, RAND, RANK, STDEV

๐ŸŸ  Logical

IF, IFS, AND, OR, NOT, IFERROR, IFNA, SWITCH, TRUE, FALSE, XOR

๐ŸŸก Lookup and Reference

VLOOKUP, HLOOKUP, INDEX, MATCH, XLOOKUP, OFFSET, INDIRECT, CHOOSE, FILTER

๐ŸŸข Text

LEFT, RIGHT, MID, LEN, TRIM, UPPER, LOWER, PROPER, FIND, SUBSTITUTE, CONCAT

๐Ÿ”ต Date and Time

TODAY, NOW, DATE, DATEDIF, DAYS, EDATE, EOMONTH, WEEKDAY, YEAR, MONTH, DAY

Excel Keyboard Shortcuts Cheat Sheet

Keyboard shortcuts are the single fastest way to speed up Excel work. A user who navigates entirely by mouse spends roughly three times longer on the same tasks as someone who has 20 shortcuts memorized. This section organizes the highest-value shortcuts by category.

Navigation shortcuts โ€” Ctrl+Home jumps to cell A1. Ctrl+End jumps to the last used cell in the worksheet. Ctrl+Arrow keys jump to the last non-empty cell in a direction โ€” the fastest way to move to the edge of a data block without scrolling. Ctrl+G (or F5) opens the Go To dialog for jumping to named ranges or specific cell addresses.

Selection shortcuts โ€” Ctrl+Shift+Arrow extends a selection to the last non-empty cell in a direction. Ctrl+Shift+End selects from the current cell to the last used cell on the sheet. Ctrl+A selects the entire current data region; press again to select the full worksheet. Ctrl+Space selects an entire column; Shift+Space selects an entire row.

Formatting shortcuts โ€” Ctrl+B bolds. Ctrl+I italicizes. Ctrl+U underlines. Ctrl+1 opens the Format Cells dialog for full control over number format, alignment, borders, and fill color. Ctrl+Shift+$ applies Currency format. Ctrl+Shift+% applies Percentage format. Alt+H+O+I auto-fits column width to the widest value in that column.

Formula entry shortcuts โ€” F2 enters edit mode on the active cell. Ctrl+` (grave accent) toggles between showing formula values and formula text โ€” essential for auditing a sheet you did not build. F4 cycles through absolute and relative reference types ($A$1, A$1, $A1, A1) while editing a formula. Ctrl+Enter fills the same formula into all selected cells simultaneously, which is faster than copying and pasting when filling a non-contiguous range.

Undo, redo, and file shortcuts โ€” Ctrl+Z undoes the last action. Ctrl+Y redoes. Ctrl+S saves the current workbook. Ctrl+W closes the current workbook without closing Excel. Ctrl+N opens a new blank workbook. Ctrl+P opens the Print dialog. Ctrl+F opens Find; Ctrl+H opens Find and Replace.

The full printable list including Mac equivalents is in the Excel shortcuts guide. A condensed one-page reference covering the 80 shortcuts that matter most for the MOS exam is in the Excel shortcuts cheat sheet.

Shortcuts by Task Type

๐Ÿ“‹ Data Entry

Tab โ€” move right to next cell Enter โ€” confirm entry and move down Ctrl+D โ€” fill down from cell above Ctrl+R โ€” fill right from cell to left Alt+Enter โ€” line break inside a cell Ctrl+; โ€” insert today's date Ctrl+Shift+: โ€” insert current time

๐Ÿ“‹ Formulas

= โ€” start a formula F4 โ€” toggle absolute/relative reference Ctrl+` โ€” show/hide formula text Ctrl+[ โ€” jump to precedent cells Shift+F3 โ€” open Insert Function dialog Alt+= โ€” auto-sum selected range Ctrl+Enter โ€” fill formula into all selected cells

๐Ÿ“‹ Formatting

Ctrl+1 โ€” Format Cells dialog Ctrl+B โ€” bold Ctrl+I โ€” italic Ctrl+U โ€” underline Ctrl+Shift+$ โ€” Currency format Ctrl+Shift+% โ€” Percentage format Alt+H+O+I โ€” auto-fit column width

๐Ÿ“‹ Workbook and Sheets

Ctrl+N โ€” new workbook Ctrl+O โ€” open workbook Ctrl+S โ€” save Ctrl+W โ€” close current workbook Ctrl+PageDown โ€” next sheet tab Ctrl+PageUp โ€” previous sheet tab F11 โ€” create chart on new sheet

Pivot Tables and Conditional Formatting Quick Reference

Pivot tables are Excel's most powerful summary tool and one of the most avoided features โ€” many users find the setup intimidating. Once you learn the three-step pattern, pivot tables become the default approach for any summary task that would otherwise require SUMIFS across multiple columns.

Creating a pivot table โ€” Click anywhere inside your data range. Go to Insert then PivotTable. Accept the defaults which place the pivot on a new worksheet. Drag a text field (like Region or Category) to the Rows area to group by that field. Drag a numeric field to the Values area โ€” Excel defaults to SUM. Right-click the Values heading to change the calculation to COUNT, AVERAGE, MAX, or MIN. A complete step-by-step guide including grouped dates and calculated fields is in the Excel pivot table guide.

Refreshing a pivot table โ€” Pivot tables do not update automatically when source data changes. Right-click anywhere in the pivot table and select Refresh, or press Alt+F5. If new rows were added beyond the original data range, go to PivotTable Analyze, then Change Data Source, and expand the range before refreshing. Using an Excel Table (Ctrl+T) as the source solves the range problem permanently โ€” Tables expand automatically as rows are added.

Conditional formatting overview โ€” Conditional formatting applies visual rules to cells based on their values, making patterns visible at a glance without reading every number. The four most-used rule types are: Highlight Cell Rules (greater than, less than, equal to, duplicate values), Top/Bottom Rules (top 10, above average), Data Bars (in-cell bar charts proportional to value), and Color Scales (gradient fill based on relative value in the range).

Formula-based conditional formatting โ€” For the most powerful rules, select New Rule then choose Use a formula to determine which cells to format. A formula like =$C2>100 can highlight entire rows based on a single column value โ€” one of the most professional techniques in the tool. The dollar sign before C locks the column reference while the row number stays relative, so every row evaluates its own column C. Full examples with multi-condition rules and real-world scenarios are in the conditional formatting guide.

Managing and editing rules โ€” Go to Home, then Conditional Formatting, then Manage Rules to see all rules applied to the current selection or the full sheet. Rules are evaluated top-to-bottom. The Stop If True checkbox prevents lower-priority rules from firing once a higher-priority rule matches. Dragging rows in the Manage Rules dialog reorders priority โ€” useful when highlight rules conflict with each other on the same range.

Data Tools: Sort, Filter, and Dropdown Lists

Excel's data tools handle the messy parts of real-world data โ€” filtering large tables, standardizing input through validation rules, removing duplicates, and splitting imported text. These tools appear less often in tutorials but come up constantly in any role that touches spreadsheets regularly.

Sort โ€” Click any cell in the column to sort by, then use the sort buttons in the Data ribbon. For multi-column sorting, go to Data then Sort and add levels โ€” for example, sort by Region ascending, then by Sales descending within each region. Always verify whether your data has a header row before applying a sort, because Excel sometimes misidentifies the first row. Checking the My data has headers box in the Sort dialog prevents header text from being sorted into the data rows.

Filter โ€” Ctrl+Shift+L toggles AutoFilter on the selected row. Click the dropdown arrow in any header cell to filter by specific values, by color, or by condition such as contains, begins with, or greater than. For extracting matching rows to a different location, use Data then Advanced Filter. In Excel 365, the FILTER function does the same thing dynamically: =FILTER(A2:C100,B2:B100="East") returns only rows where column B equals East and updates automatically when source data changes.

Dropdown lists and data validation โ€” A dropdown list restricts a cell to a predefined set of values, which prevents typos in data entry and forces consistent input across a team. Select the target cells, go to Data then Data Validation, set Allow to List, and enter the values comma-separated or point to a named range.

For a dynamic dropdown that updates automatically when the source list changes, format the source as an Excel Table first. Creating a dependent dropdown โ€” where choices in one cell depend on the selection in another โ€” is one of the most commonly asked Excel interview questions. A step-by-step walkthrough is in the excel drop down list guide.

Remove duplicates โ€” Select the data range. Go to Data then Remove Duplicates. Check which columns should be compared to define a duplicate. Click OK and Excel reports how many rows were removed. This operation has no undo after the dialog closes, so save the file first or work on a copy of the data.

Text to columns โ€” Data pasted from external systems often arrives as a single column that needs splitting โ€” for example Last,First format or dates like 20260507. Select the column, go to Data then Text to Columns, choose Delimited with comma, space, or a custom character, or choose Fixed Width for column positions. Set data types in the final step to prevent Excel from misformatting dates and leading zeros.

Take a Free Excel Practice Test

Excel Mastery Path: 5 Stages

1

Master SUM, AVERAGE, IF, COUNTIF, and VLOOKUP from memory. These five handle roughly 70% of formula tasks in entry-level analyst and admin roles. Practice writing them from scratch without looking up syntax until each takes under 10 seconds.

2

Memorize 20 shortcuts: navigation with Ctrl+Arrow and Ctrl+Home, selection with Ctrl+Shift+Arrow, formatting with Ctrl+1 and Ctrl+B, and formula shortcuts like F2, F4, and Ctrl+backtick. Speed gains become noticeable within one week of consistent use.

3

Build five pivot tables from scratch using different datasets. Practice grouping by date to show monthly and quarterly summaries, adding calculated fields, and refreshing data after source changes. Pivot tables appear in the job description for most analyst roles.

4

Learn INDEX/MATCH, SUMIFS, IFERROR, and in Excel 365 the dynamic array functions FILTER, SORT, and UNIQUE. These unlock problems that VLOOKUP and basic IF logic cannot solve cleanly and signal senior-level proficiency on resumes and in interviews.

5

Attempt the Microsoft Office Specialist Excel exam (MOS). Passing demonstrates proficiency to employers under real conditions and covers the full range of conditional formatting, data validation, pivot tables, and formula tasks tested in the certification.

Excel vs. Google Sheets: Practical Comparison

Pros

  • Handles larger datasets with better performance above 100,000 rows
  • Power Query and Power Pivot for enterprise-level data modeling
  • More formula options including XLOOKUP, dynamic arrays, and statistical functions
  • Better offline capability and VBA macro automation
  • Required or preferred in finance, banking, and most corporate environments

Cons

  • Requires a Microsoft 365 subscription or one-time software purchase
  • Real-time collaboration is less smooth than Google Sheets
  • Heavier application with higher RAM usage and longer load times
  • Version differences between Excel 2019, 2021, and 365 can cause formula incompatibility
  • Steeper initial learning curve compared to Google Sheets for new users

Using This Cheat Sheet for MOS Exam Prep

The Microsoft Office Specialist Excel exam โ€” MO-201 for Excel 2019 or MO-365 for Microsoft 365 โ€” is a performance-based test that requires completing real tasks in a live Excel environment rather than answering multiple-choice questions. There is no partial credit, so understanding the exact steps for each procedure matters more than general familiarity with where features live.

The exam covers five main domains: Managing Workbooks and Worksheets (about 15% of the exam), Managing Data Cells and Ranges (about 20%), Creating Tables (about 15%), Applying Formulas and Functions (about 25%), and Managing Charts (about 25%). Formulas and charts together make up roughly half the exam weight, which means the formulas section of this cheat sheet is the highest-priority study area.

For formulas specifically, the MOS exam tests writing correct syntax and interpreting what an existing formula does. Common formula tasks include writing nested IF statements, using VLOOKUP with both exact and approximate match modes, applying SUMIF and SUMIFS, and using financial functions like PMT for loan payments and FV for future value calculations. Practicing these from the formula section of this cheat sheet until you can write each from memory is the right preparation approach.

For data tools, expect tasks involving multi-level sorting, applying conditional formatting using formula conditions (not just presets), creating pivot tables with specific row and column groupings, and setting up data validation dropdown lists. These are exactly the areas most candidates underestimate โ€” they study formulas but skip the data tools section, then run out of time on the exam's second half.

The Microsoft Office Specialist Excel certification guide has the full exam breakdown by domain weight, the 25 most commonly tested tasks, and a practice test set designed to mirror the live exam environment. Using that resource alongside this cheat sheet covers everything tested on the current exam version and gives you a repeatable study framework rather than hoping memorization sticks.

Test Your Excel Knowledge Now

Excel Questions and Answers

What should an Excel cheat sheet include?

A practical Excel cheat sheet covers the 20 to 30 most-used formulas (SUM, IF, VLOOKUP, INDEX/MATCH, COUNTIF), the 20 highest-value keyboard shortcuts, how to create and refresh pivot tables, the main conditional formatting rule types, and data tools like sort, filter, and dropdown validation. Everything beyond that can be looked up as needed; these fundamentals need to be internalized.

What is the difference between VLOOKUP and INDEX/MATCH?

VLOOKUP searches the leftmost column of a table and returns a value to its right. It breaks when columns are inserted and cannot look to the left. INDEX/MATCH combines two functions: MATCH finds the row position of a lookup value, and INDEX returns the value from any column in that row. INDEX/MATCH is more flexible, faster on large ranges, and does not break when columns are reordered. In Excel 365, XLOOKUP replaces both and is simpler to write.

How do I freeze both a row and a column at the same time?

Click the cell that is one row below and one column to the right of where you want the freeze. To freeze row 1 and column A simultaneously, click cell B2. Then go to View, Freeze Panes, Freeze Panes. Excel locks everything above and to the left of the selected cell. To unfreeze, go back to View, Freeze Panes, Unfreeze Panes.

What is the fastest way to apply a formula to an entire column?

Type the formula in the first data cell, for example C2. Double-click the fill handle โ€” the small green square in the bottom-right corner of the cell โ€” and Excel fills the formula down to match the last row in the adjacent column automatically. In Excel Tables (Ctrl+T), formulas propagate to the entire column the moment you type in the first row, with no fill handle needed.

How do I remove duplicates without losing the original data?

Copy the range to a new sheet first, then use Data, Remove Duplicates on the copy. Alternatively, use the UNIQUE function in Excel 365 (=UNIQUE(A2:A100)) which returns a deduplicated list in a separate range without touching the source. A third method is a helper column with =COUNTIF($A$2:A2,A2) โ€” rows where the result equals 1 are first occurrences; filter for those to isolate unique values while keeping duplicates visible.

What Excel skills matter most for job interviews?

Interviewers most frequently test VLOOKUP or INDEX/MATCH, pivot tables, conditional formatting, SUMIF/COUNTIF, and basic chart creation. For analyst and finance roles add nested IFs, IFERROR, and data validation. For senior roles add Power Query, XLOOKUP, and dynamic array functions. The ability to demonstrate these live in an Excel file during the interview, rather than just describing them, is what separates candidates at every level.
โ–ถ Start Quiz