Lookup formulas
Find names, prices, departments, or categories by matching IDs, SKUs, and reference codes.
Spreadsheet utility
The main Excel entry point for turning written spreadsheet requests into formulas that still feel readable once they land in the workbook.
Start here when the spreadsheet job is clear but the Excel formula is not. Describe the task in normal language and get a formula you can copy, inspect, and adapt.
Overview
Most Excel users do not struggle with the business rule. They struggle with translating that rule into the right function, argument order, and cell references without wasting time testing syntax.
This page is designed as the main starting point for custom Excel formula requests. Use it when you know the outcome you need, but you have not decided yet whether the answer will be IF, XLOOKUP, SUMIFS, COUNTIFS, a date formula, or a text function.
Why use it
How to use it
Step 1
Describe the result you want in plain English.
Step 2
Keep Excel selected so the syntax matches your workbook.
Step 3
Copy the generated formula, then adapt ranges or labels as needed.
Use cases
Find names, prices, departments, or categories by matching IDs, SKUs, and reference codes.
Generate IF and nested IF formulas for status labels, approvals, thresholds, and category rules.
Build SUMIF, SUMIFS, COUNTIF, and COUNTIFS formulas for reports, dashboards, and trackers.
Create overdue checks, month filters, days-remaining calculations, and today-based logic.
Extract names, combine labels, clean spaces, and standardize text fields in Excel tables.
Practical examples
These examples show the kind of prompts that work well here before you move into narrower pages for lookups, explanation, or repair.
Prompt: Return Pass if score in B2 is 70 or higher, otherwise Fail
Example formula
=IF(B2>=70,"Pass","Fail")Checks the score in B2 and returns Pass when it is at least 70, otherwise Fail.
Prompt: Look up the price in column D based on product code in A2 using table A:D
Example formula
=VLOOKUP(A2,$A:$D,4,FALSE)Searches the first column of A:D for the value in A2 and returns the matching price from column D.
Prompt: Sum values in C:C when B:B equals East
Example formula
=SUMIF(B:B,"East",C:C)Adds the values in column C only when the region in column B is East.
Prompt: Show Overdue if due date in E2 is before today
Example formula
=IF(E2<TODAY(),"Overdue","On time")Compares the due date in E2 with today and labels the result accordingly.
Why this page
A lot of Excel work does not start with a function name. It starts with a result such as flag overdue rows, total March revenue, or return a price from a SKU. This page is built for that broader intent.
Instead of forcing you to decide the function family first, it lets you describe the task and then works toward an Excel formula structure that is practical to review and adapt.
What to expect
If you already know you need VLOOKUP, XLOOKUP, IF, SUMIFS, or COUNTIFS, the dedicated pages give you tighter examples and more function-specific guidance. If you only know the outcome, this page is the better entry point.
That distinction keeps the site easier to navigate and avoids the usual AI-tool problem where every page makes the same promise with a different headline.
Examples by category
The best prompts state the outcome, the relevant columns or ranges, and any criteria or fallback result. A short, specific request is usually more useful than a broad one.
For example, sum revenue in C:C when region in B:B is East gives the generator something concrete to work with. The clearer the sheet logic, the less cleanup you need afterwards.
FAQ
Yes. You can describe the result you want in plain English and the tool will return an Excel formula with a short explanation.
Yes. It handles common tasks well and also helps structure more detailed requests when you provide the columns, ranges, and expected result clearly.
Yes. Each result includes a readable explanation so you can sanity-check the logic before using it in a live workbook.
Use this page when you know the spreadsheet outcome but not the exact function family yet. Use the narrower pages when you already know you need something specific such as VLOOKUP, XLOOKUP, IF, SUMIFS, or COUNTIFS.
Formula Examples is a reference library of fixed patterns. This page is for custom Excel requests where the formula needs to match your exact ranges, criteria, or workbook logic.
Often yes, but some syntax and preferred functions differ. Use the Google Sheets page when you want the output tailored to Sheets.
Yes. The launch version is designed to feel useful right away without forcing an account or gating basic formula generation.
That is normal. Spreadsheet formulas depend on your exact columns and ranges, so the explanation is there to help you adapt the formula safely.
Next pages
Stay here when you are starting from the outcome. Move to a narrower page when you already know you need VLOOKUP, XLOOKUP, IF, SUMIFS, COUNTIFS, explanation, or debugging.
Build Google Sheets formulas with Sheets-first syntax and shared-sheet workflows in mind.
Generate classic first-column lookup formulas for existing workbooks and shared sheets.
Create modern lookup formulas with explicit return ranges and custom not-found logic.
Turn thresholds, blank checks, and status rules into IF and nested IF formulas.
Total amounts by one or many conditions for reports, dashboards, and trackers.
Count matching rows for KPIs, trackers, and status-based spreadsheet summaries.
Understand what an existing formula does before you edit or replace it.
Diagnose why a formula is failing and get a safer corrected version to test.
Browse copy-ready reference formulas before generating something more custom.