Use AI to generate XLOOKUP functions for efficient data lookup and matching
Convert your text instructions into formulas or input a formula to have it explained.
Edit Excel online by chatting with AI
Convert your text instructions into SQL queries - powered by AI.
Generate Excel VBA (Visual Basic for Applications) code to automate tasks and create custom solutions within Microsoft Excel.
Upload your Excel file and generate beautiful charts with our AI-powered chart generator.
Convert your text into beautiful mind maps with our AI-powered mind map generator. Edit and customize your mind maps easily.
Learn how to use Excel’s XLOOKUP function effectively. XLOOKUP is the modern replacement for VLOOKUP and HLOOKUP, offering more flexibility and power in data lookup operations.
=XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])
Basic lookup (find employee salary by ID):
=XLOOKUP(A2, EmployeeIDs, Salaries)
Multiple column return (get name and department):
=XLOOKUP(A2, EmployeeIDs, NameDeptColumns)
With error handling (custom message):
=XLOOKUP(A2, ProductIDs, Prices, “Product not found”)
Approximate match (find next larger price):
=XLOOKUP(100, PriceList, ProductNames, “Not available”, 1)
Wildcard search (find items starting with “App”):
=XLOOKUP(“App*”, ProductNames, Prices, “No match”, 2)
Reverse search (find last occurrence):
=XLOOKUP(SearchValue, DataRange, ResultRange, “Not found”,
0, -1)