This lesson will get you using AI inside Excel in just 6 minutes. You'll learn how to access AI features in Excel, what kinds of tasks they can handle, and how to apply them to real work right away. By the end, you'll be able to analyze data, generate formulas, and spot patterns faster than ever before-all without being an Excel expert.
We're focusing on practical application. You won't just read about AI in Excel; you'll see exactly how real people use it to solve actual problems in their daily work and life.
Microsoft has integrated AI into Excel through several features:
To use Copilot, you need a Microsoft 365 subscription with Copilot access. The Analyze Data feature is available in most modern Excel versions (Excel 2016 and later, Excel for web, Excel mobile).
You'll find Analyze Data on the Home tab in the ribbon. For Copilot, look for the Copilot icon in the ribbon or the chat interface on the right side of your screen.
Maria runs a small bakery. She has a spreadsheet with 8 months of sales data for 45 different products-pastries, breads, cakes, and cookies. She needs to know which products are her top sellers, which ones are declining, and whether there are any seasonal patterns she should prepare for.
Maria tries to manually scan through hundreds of rows of data. She attempts to create pivot tables but gets confused with the fields and layout. She tries making charts but isn't sure which type to use or how to set them up properly. After 90 minutes, she has a few basic charts but no clear insights and no confidence in her conclusions.
Maria selects her data range (including headers) and clicks Analyze Data on the Home tab. Within seconds, Excel shows her:
She asks a question in natural language: "Which products sell best on weekends?" Excel generates a chart comparing weekend vs weekday sales by category. Total time: 4 minutes.
Instead of needing to know pivot tables, chart types, or complex formulas, Maria simply let the AI analyze her data and asked questions in plain English. The AI identified patterns she would have missed and presented them in clear visual formats. She went from overwhelmed to informed in minutes instead of hours.
James is a college student tracking his monthly expenses across categories: food, transport, books, entertainment, and utilities. He wants to create a formula that automatically flags any category where he's spent more than 30% of his total monthly budget, so he can adjust his spending before running out of money.
James knows he needs an IF statement combined with some kind of percentage calculation, but he's not sure of the exact syntax. He tries writing:
=IF(B2>B10*0.3,"Over Budget","OK")
But he keeps getting errors because his cell references are wrong, and he's not sure how to make it work when he copies the formula down. He spends 20 minutes searching online forums and watching YouTube videos trying to understand absolute vs relative references.
James opens Copilot in Excel and types: "Create a formula that shows 'Over Budget' if the amount in column B is more than 30% of the total in cell B15, otherwise show 'Within Budget'"
Copilot immediately provides:
=IF(B2>$B$15*0.3,"Over Budget","Within Budget")
It explains that the dollar signs make B15 an absolute reference so it won't change when copied down. James pastes the formula in C2, copies it down the column, and it works perfectly. He then asks: "Now add another condition: if it's over 40%, show 'Serious Alert' instead"
Copilot updates the formula:
=IF(B2>$B$15*0.4,"Serious Alert",IF(B2>$B$15*0.3,"Over Budget","Within Budget"))
Total time: 2 minutes.
James didn't need to memorize IF statement syntax, understand nested formulas, or know about absolute references beforehand. He described what he wanted in normal language, and the AI translated that into working Excel formulas. He learned about absolute references in context while solving his real problem, rather than studying them abstractly first.
Priya works in HR at a mid-sized company. She has 6 months of attendance data for 80 employees-dates, names, and status (Present, Absent, Late, Half-day). She needs to identify employees who have unusual patterns, like frequent Monday absences or a sudden increase in late arrivals, so she can schedule check-in conversations.
Priya starts creating manual filters, sorting by name and date, trying to spot patterns with her eyes. She attempts to use COUNTIF formulas to count absences per person but struggles to make them work across multiple criteria. She wants to count "Mondays where employee was absent" but doesn't know how to combine day-of-week detection with conditional counting. After an hour, she has partial counts but no pattern detection.
Priya selects her data and opens Analyze Data. She types: "Show me which employees have the most absences on Mondays"
Excel generates a chart showing the top 10 employees by Monday absence frequency. She then asks Copilot: "Create a summary showing each employee's total absences, late arrivals, and their trend over the last 3 months compared to the first 3 months"
Copilot creates a new summary table with columns for:
It uses formulas like COUNTIFS with date criteria to calculate these automatically. Priya can now immediately see that three employees have had a 50%+ increase in absences in recent months. Total time: 5 minutes.
Rather than needing advanced Excel skills with complex multi-criteria formulas and date functions, Priya asked questions and let AI build the analysis framework. The AI understood her business need (pattern detection for HR purposes) and created the appropriate structure. She got actionable insights without becoming an Excel formula expert.
Here's your 6-minute process for using AI in Excel on any new task:
You're a clinic administrator with 3 months of patient appointment data including: date, patient ID, appointment type (checkup, consultation, follow-up, emergency), doctor name, and whether the patient showed up or was a no-show. You need to identify which appointment types have the highest no-show rates and whether certain days of the week have more no-shows than others. Use AI features in Excel to analyze this and create a visual summary you could present to clinic management.
You've tracked two months of your meals in Excel with columns for: date, meal name, main ingredients, estimated cost, and meal type (breakfast, lunch, dinner, snack). You want to find your average daily food spending, identify your three most expensive meals, and create a formula that marks any day where total spending exceeded $25 as "Budget Alert". Use AI to generate these insights and formulas without manually calculating anything.
You're a teacher with test scores for 35 students across four tests taken throughout the semester. Each student has scores for Test 1, Test 2, Test 3, and Test 4. You want to identify which students have shown consistent improvement (each score higher than the previous), which students' performance is declining, and what the average improvement from Test 1 to Test 4 is for the entire class. Use AI in Excel to create this analysis and a formula that automatically categorizes each student as "Improving," "Declining," or "Stable."