This lesson gives you a ready-to-use collection of AI prompts designed specifically for Excel work. Instead of spending hours figuring out formulas, cleaning messy data, or building reports from scratch, you'll learn how to communicate with AI tools like ChatGPT or Claude to generate exactly what you need for your spreadsheets. These aren't theoretical prompts-they're practical, copy-paste templates you can use immediately in real work situations.
You'll see how professionals across different industries use these prompts to solve actual Excel problems faster and more accurately. By the end, you'll have a mental library of prompt patterns that work, and you'll understand what makes a prompt effective for Excel tasks.
Many people try using AI for Excel help but get frustrated because they ask vague questions like "help me with Excel" or "create a formula." The AI then gives generic advice or asks clarifying questions, turning a quick task into a long conversation. The secret is being specific about three things:
When your prompt includes all three, AI gives you working solutions on the first try. Let's see this in action through real examples.
Maria manages a small restaurant and tracks daily sales in Excel. She has columns for Date, Day of Week, Total Sales, and Food Cost. Every Monday, she needs to calculate which day had the highest profit margin and identify trends. She's comfortable with basic Excel but finds herself manually scanning numbers and using a calculator.
Maria asks the AI: "How do I find the best day in my sales data?"
The AI responds with general questions: "What do you mean by best? Highest sales? What does your data look like?" This back-and-forth wastes time, and when she finally gets an answer, it's a generic MAX function that doesn't account for profit margin calculations.
Maria uses this specific prompt:
"I have an Excel sheet with these columns: A (Date), B (Day), C (Total Sales), D (Food Cost). I need a formula in column E that calculates profit margin as (Total Sales - Food Cost) / Total Sales × 100. Then I need a formula that tells me which day of the week has the highest average profit margin. My data is in rows 2 through 50."
The AI immediately provides:
=((C2-D2)/C2)*100=INDEX(B:B,MATCH(MAXIFS(E:E,B:B,B2:B50),E:E,0)) with explanation of how to use AVERAGEIF for each dayThe prompt specified exact column locations, the mathematical definition of profit margin, the data range, and the two-part goal (calculate margin, then find best day). The AI didn't need to guess or ask follow-up questions. Maria got a complete, working solution in seconds.
James works in HR and receives employee timesheets from different departments. The problem is that some departments write dates as "12/5/2024," others use "Dec 5 2024," and some even write "5-Dec-24." He needs all dates in a standard format (YYYY-MM-DD) for the payroll system. He has 300 rows of mixed-format dates in column A.
James asks: "How do I fix date formats in Excel?"
The AI gives him general advice about the Format Cells dialog and TEXT functions, but these don't work because his dates are text strings in different formats, not actual Excel date values. He tries several suggestions and nothing works. He's now considering manually retyping 300 dates.
James uses this detailed prompt:
"I have dates in column A (rows 2-301) in mixed text formats: some are 'MM/DD/YYYY', some are 'MMM DD YYYY', and some are 'DD-MMM-YY'. I need a formula in column B that converts all of these to YYYY-MM-DD format. If a cell can't be converted, it should show 'CHECK'. Give me a formula that handles all three formats."
The AI provides:
=IFERROR(TEXT(DATEVALUE(A2),"YYYY-MM-DD"),"CHECK")James specified the exact problem (mixed text formats), listed the specific format variations he's dealing with, stated the desired output format precisely, and mentioned the data range. He also asked for error handling ("CHECK" for problematic entries). The AI gave him a robust solution that handles the complexity of real-world messy data.
Priya is a university student tracking her assignment scores across five courses. She has columns for Course Name, Assignment Name, Score (out of 100), and Weight (percentage this assignment counts toward final grade). She wants to know her current weighted average in each course and her overall GPA if A = 90+, B = 80-89, C = 70-79.
Priya asks: "Calculate my grades in Excel."
The AI asks what grading system she uses, how her data is organized, what she means by "grades," whether she wants letter grades or percentages, etc. After several messages, she gets a simple AVERAGE formula that doesn't account for weighted scores at all.
Priya uses this comprehensive prompt:
"I have grade data in columns A-D: Course Name (A), Assignment Name (B), Score out of 100 (C), Weight as decimal (D, like 0.15 for 15%). Data is in rows 2-30. I need: (1) A formula in column E that calculates weighted score (Score × Weight), (2) A summary table showing each unique course name and its total weighted average, (3) A formula that converts weighted averages to letter grades where A≥90, B≥80, C≥70, D≥60, F<>
The AI delivers:
=C2*D2=SUMIF($A$2:$A$30,G2,$E$2:$E$30)=IF(G2>=90,"A",IF(G2>=80,"B",IF(G2>=70,"C",IF(G2>=60,"D","F"))))Priya's prompt included her data structure with column letters, explained what the decimal weights meant, broke down her need into three specific numbered requirements, and provided the exact grade thresholds. The AI understood the complete picture and delivered a multi-part solution that works together as a system.
Based on these examples, here's the template structure that consistently gets you working solutions:
Not every prompt needs all five elements, but the more complex your task, the more helpful it is to include these details.
When you need formulas, specify the calculation logic in plain language:
For messy data, describe the problem and the clean state you want:
For insights and summaries, state what patterns you're looking for:
For repetitive tasks, describe the sequence of actions:
Three techniques elevate good prompts to great ones:
When your data structure is unusual, show a few rows:
"My data looks like this: Row 2 is 'Jan-2024 | 450 | West', Row 3 is 'Jan-2024 | 320 | East'. I need to split this into separate columns."
Add "Explain how this formula works" to learn while you work:
"Give me a SUMIFS formula for this scenario and explain each argument so I can modify it later."
When accuracy matters, request multiple approaches:
"Show me both a formula-based solution and a pivot table approach for calculating average sales by region."
Here are templates you can adapt to dozens of situations:
You work at a dental clinic. Your spreadsheet has these columns: Patient Name (A), Appointment Date (B), Appointment Time (C) in format "2:30 PM", Service Type (D), and Duration in Minutes (E). You need to calculate what time each appointment ends and identify any appointments that would run past 5:00 PM. Write a prompt that would get you formulas to solve both parts of this problem.
You run an online shop and track inventory in Excel: Product Name (A), Current Stock (B), Minimum Stock Level (C), Supplier Email (D). You want to create a system that shows "REORDER" in column E when current stock falls below minimum level, and shows nothing otherwise. You also want a separate list that shows only product names that need reordering. Write a prompt that would generate both the formula and the filtered list solution.
You're a teacher with student names in column A and ten quiz scores in columns B through K. Your grading policy drops each student's lowest two quiz scores and averages the remaining eight. Write a prompt that would give you a formula for column L that calculates this correctly for each student.