🔎 Lookup & Reference

The bread and butter of data analysis. Learn how to connect datasets, find values, and dynamically reference cells.

🦕 Classic
01. VLOOKUP
The most famous function. Scans the first column vertically to find a match. Essential knowledge.
🚀 Modern
02. XLOOKUP
The modern king. Looks left or right, handles errors, and defaults to exact match.
🧩 Power Pair
03. INDEX & MATCH
Before XLOOKUP, this was the pro way to look left. Separate the "Position" finding from the "Value" getting.
🌊 Dynamic Array
04. FILTER
Return multiple results at once. Extract all rows that match a specific criteria (e.g., "Department = Sales").
Dynamic Array
05. UNIQUE
Instantly extract a distinct list of values from a column, removing all duplicates automatically.
🔃 Dynamic Array
06. SORT / SORTBY
Reorder your data dynamically without touching the "Sort" button in the menu.
📍 Advanced
07. OFFSET
The GPS navigator. Move a specific number of rows and columns from a starting point.
🔗 Advanced
08. INDIRECT
Convert text string into a valid cell reference. Crucial for dependent dropdowns.
🎯 Utility
09. CHOOSE
Pick a value from a list based on an index number (1, 2, 3...). Simple but effective.
📜 Legacy
10. LOOKUP
The original vector lookup. Great for approximate matches on sorted data (like grading scales).
⬅ Back to Excel Menu