What is the MO-201 Excel Expert Certification?
The Microsoft Office Specialist Excel Expert exam (MO-201) is the advanced Excel certification from Microsoft. It tests expert-level Excel skills including complex formula construction, advanced data analysis, automation, and data management.
MO-201 is intended for experienced Excel users who need a formal credential to validate their skills. It builds on the MO-200 Associate level — you should be comfortable with all MO-200 content before attempting the Expert exam.
Exam details:- Exam code: MO-201
- Duration: approximately 50 minutes
- Format: live in-application tasks
- Passing score: 700 out of 1000
- Provider: Certiport / Microsoft
MO-201 Exam Objectives
1. Manage Workbook Options and Settings (5–10%)
- Manage workbooks
- Prepare workbooks for collaboration
- Use and configure language options
2. Manage and Format Data (20–25%)
- Fill data using Flash Fill and advanced options
- Apply custom data formats: #,##0.00 or dd-mmm-yyyy
- Apply advanced conditional formatting with custom formulas
- Create and modify custom views
- 0.00 — two decimal places
- #,##0 — thousands separator
- "$"#,##0.00 — currency
- dd/mm/yyyy — date format
3. Create Advanced Formulas and Macros (35–40%)
This is the heaviest section. Key areas:
Logical and lookup:- =IF(AND(A1>10, B1<5), "Yes", "No")
- =IFERROR(VLOOKUP(A2,Sheet2!A:C,2,0),"Not found")
- =INDEX(B:B, MATCH(D2, A:A, 0))
- =XLOOKUP(D2, A:A, B:B, "Not found")
- =SUMPRODUCT(A1:A10, B1:B10)
- =SUMIFS(C:C, A:A, "East", B:B, ">100")
- =COUNTIFS(A:A, "Passed", B:B, ">80")
- =LEFT(A2, FIND(" ", A2)-1) — extract first word
- =TRIM(UPPER(A2))
- =TEXTJOIN(", ", TRUE, A2:A10)
- =DATEDIF(A2, TODAY(), "Y") — years between dates
- =EOMONTH(TODAY(), 0) — last day of current month
- =WORKDAY(TODAY(), 10) — 10 business days from today
- Define a named range: Formulas > Name Manager
- Use in formulas: =SUM(SalesData) instead of =SUM(B2:B100)
- Record a macro
- Assign a macro to a button
- Edit macro in VBA editor (basic understanding)
4. Manage Advanced Charts and Tables (20–25%)
- Create and modify dual-axis charts
- Create waterfall, funnel, and histogram charts
- Add trendlines and error bars
- Create PivotTables from multiple ranges
- Create calculated fields in PivotTables
- Group PivotTable data by date
5. Manage Data by Using Power Query and Power Pivot (10–15%)
Power Query:- Import data from CSV, Excel, and web sources
- Transform data: filter, sort, remove columns, split text
- Merge queries (like a JOIN)
- Load to worksheet or data model
- Create relationships between tables
- Write basic DAX formulas
- Build PivotTables from the data model