O
Octo
CoursesPricing
O
Octo
CoursesPricingDashboardPrivacyTerms

© 2026 Octo

AI for Professionals
1Your AI Toolkit2Prompting That Actually Works3AI for Writing & Communication4AI for Research & Analysis5AI for Data & Spreadsheets6Automating Repetitive Work7AI Mistakes & How to Catch Them8Building Your AI Workflow
Module 5~20 min

AI for Data & Spreadsheets

Write formulas in English, clean messy data in seconds, and spot trends you'd miss manually — no code needed.

"I've been staring at this spreadsheet for three hours and I still can't figure out the formula"

Remember Priya? She's not just good at research — she also owns the quarterly operations report. Every quarter, she gets a 10,000-row spreadsheet from operations — delivery dates, invoice amounts, customer names, regional codes. Her boss wants a breakdown of late deliveries by region, with the average delay in days, and a chart showing the trend over the last four quarters.

Priya knows the data is in there somewhere. But the formula she needs involves INDEX(MATCH(...)) nested inside an IF(ISNUMBER(...)), and honestly, she learned that formula last year and already forgot it.

So she types into ChatGPT: "Write me an Excel formula that finds the average number of days a delivery was late, grouped by region, only counting deliveries where the actual date is after the promised date."

Twelve seconds later, she has a working formula. She pastes it in. It works on the first try.

That's the moment Priya realized she'd been doing spreadsheets the hard way her entire career.

AI is your spreadsheet-savvy intern

Here's the analogy that makes this click: imagine you hired an intern who has memorized every Excel and Google Sheets formula ever written. Every VLOOKUP, every SUMPRODUCT, every QUERY function — they know it all.

But here's the catch: this intern has never seen your business before. They don't know what "Region A" means to your company. They don't know that column F has dates in mixed formats because Karen from accounting pastes them differently. They don't know that row 1,247 has a typo that will throw off everything.

You tell the intern what you want. The intern writes the formula. You check the output makes sense. That's the workflow.

What AI does wellWhat AI needs you for
Write any formula from a plain English descriptionKnowing what question to ask the data
Clean and standardize messy dataVerifying the cleaned data looks right
Suggest chart types for your dataDeciding which insight matters to your audience
Spot patterns across thousands of rowsKnowing whether a pattern is meaningful or noise
Convert between date formats, currencies, unitsConfirming the conversion logic matches your business rules

✗ Without AI

  • ✗SQL queries or Excel formulas for every cut
  • ✗Hours to explore a dataset
  • ✗Limited to questions you thought of upfront
  • ✗Analyst bottleneck for every insight

✓ With AI

  • ✓Natural language queries (show me churn by cohort)
  • ✓Minutes to explore patterns
  • ✓AI suggests angles you didn't think of
  • ✓Analyst focuses on interpretation, not extraction

Writing formulas in plain English

You no longer need to memorize formula syntax. You describe what you want, and AI writes it.

The formula-request template

Here's a simple structure that gets great results every time:

I have a spreadsheet with these columns:
[list your column headers]

I need a formula that:
[describe what you want in plain English]

The data is in [Excel / Google Sheets].
The data starts in row 2 (row 1 is headers).
There are approximately [X] rows.

Examples that work immediately

Simple lookup:

💭You're Probably Wondering…

"Column A has employee names, column B has departments, column C has salaries. Give me a formula for cell E2 that finds the average salary for the department I type in cell E1."

Conditional counting:

💭You're Probably Wondering…

"Column D has dates and column E has status (Complete, Pending, Cancelled). Give me a formula that counts how many items were completed in January 2025."

Multi-condition analysis:

💭You're Probably Wondering…

"I need a formula that sums column F (revenue) only for rows where column B is 'Enterprise' AND column D (date) is in Q3 2025."

💭You're Probably Wondering…

There Are No Dumb Questions

"What if AI gives me a formula and it returns an error?"

Copy the error message and paste it right back to AI: "This formula returned #REF! error. Here's the formula: [paste]. My data looks like: [describe]. Fix it." Nine times out of ten, AI will spot the issue — wrong column reference, mismatched parentheses, or a text-vs-number mismatch — and hand you a corrected version.

"Should I use ChatGPT, Copilot, or Gemini for spreadsheet help?"

All of them handle formula writing well. If you use Microsoft 365, Copilot is built right into Excel. Google Sheets has Gemini integration. ChatGPT works great as a separate window you paste formulas into. Pick whichever is most convenient — the skill transfers across all of them.

⚡

Write your first AI-powered formula

25 XP
Think of a real spreadsheet you work with regularly. Now write a plain English formula request using the template above. Include: 1. Your actual column headers (or simplified versions) 2. What you want the formula to calculate 3. Which spreadsheet app you use Paste your request into any AI tool and see what comes back. Did it work on the first try? If not, paste the error back and ask AI to fix it. **Bonus:** Try asking for the same formula in a different spreadsheet app (e.g., ask for both Excel and Google Sheets versions). Notice how the syntax differs but the AI handles both.

Cleaning messy data in seconds

Messy data is the real time killer. Before AI, cleaning data meant writing complex formulas or doing it by hand. Now you describe the mess, and AI tells you how to fix it.

The five most common data messes (and what to tell AI)

The messWhat you tell AIWhat AI does
Mixed date formats (1/5/25, Jan 5 2025, 2025-01-05)"Standardize all dates in column C to YYYY-MM-DD format"Gives you a formula or script to convert every format
Names in different cases (john smith, JOHN SMITH, John Smith)"Clean column A so all names are in Title Case"=PROPER(A2) or equivalent
Extra spaces and hidden characters"Remove all leading, trailing, and double spaces from column B"=TRIM(CLEAN(B2))
Duplicates you're not sure about"Find potential duplicates in column A, accounting for slight spelling differences"Suggests fuzzy matching approach
Numbers stored as text"Column D looks like numbers but won't sum — fix it"=VALUE(D2) or paste-special trick

The power move: describe the mess, get a cleanup plan

Instead of fixing one problem at a time, dump a sample of your messy data into AI and say:

Here are the first 20 rows of my data. Identify all data quality
issues and give me a step-by-step cleanup plan with formulas
for each fix:

[paste your data]

AI will scan it and come back with something like: "I found 4 issues: inconsistent date formats in column C, duplicate entries in rows 7 and 14, a currency symbol mixed into column E, and blank cells in column B that should probably be 'N/A'."

That's a data audit that used to take an hour, done in 30 seconds.

⚡

The messy data challenge

50 XP
Here's a sample of messy data. Paste it into AI and ask it to identify all issues and provide a cleanup plan: ``` Name | Date | Amount | Region john smith | 1/5/2025 | $1,200 | north JANE DOE | Jan 5 2025 | 1200 | North John Smith | 2025-01-05 | $1,200 | NORTH Bob Jones | 05/01/25 | 1200.00| north jane doe | 1-5-25 | 1,200 | North ``` After AI gives you the cleanup plan: 1. Count how many distinct issues AI identified 2. Check if AI caught the duplicate entries (John Smith and jane doe appear twice) 3. Ask AI: "Now give me the formulas to fix each issue in Google Sheets" Write down the issues AI found vs. issues you spotted yourself. Did AI catch anything you missed?

Generating charts from descriptions

You don't need to fight with chart wizards anymore. Just describe the chart you want.

How to ask for charts

In tools with built-in AI (Excel Copilot, Google Sheets with Gemini):

💭You're Probably Wondering…

"Create a bar chart showing total revenue by region for Q3 2025, sorted highest to lowest"

In ChatGPT / Claude (paste your data first):

💭You're Probably Wondering…

"Here's my data [paste]. Create a chart showing the monthly trend of late deliveries. Highlight any month where late deliveries exceeded 15%."

The chart description formula

Think of it like ordering at a restaurant — be specific:

Chart type: [bar / line / pie / scatter]
Data: [what goes on each axis]
Grouping: [how to slice it]
Highlight: [anything special to call out]
Time period: [if applicable]
💭You're Probably Wondering…

There Are No Dumb Questions

"Can AI really make charts, or does it just describe them?"

Depends on the tool. Excel Copilot and Google Sheets Gemini create actual charts in your spreadsheet. ChatGPT and Claude can generate chart images using code interpreter, or give you the chart configuration to paste into your tool. Either way, you go from "I want a chart" to "here's a chart" in under a minute.

"What if the chart looks wrong?"

Tell AI what's wrong: "The bars are too close together," "The Y-axis should start at zero," "I need the legend at the bottom." Treat it like giving feedback to a designer — describe what you want changed and AI will adjust.

Spotting trends you'd miss manually

This is where AI truly shines with spreadsheet data. A human scanning 10,000 rows will miss patterns. AI won't.

What to ask AI to look for

Here's my data [paste or upload].
Analyze it and tell me:
1. The 3 most significant trends
2. Any outliers or anomalies
3. Correlations between columns I might not expect
4. Anything that looks unusual compared to what you'd expect

What kinds of patterns AI catches

  • Recurring anomalies: A spike in returns that always falls on the same day of the week — pointing to a logistics or fulfilment issue that would take days to surface manually.
  • Leading indicators: Correlations between early-stage employee behaviours and later attrition — the kind of connection that's invisible when you're looking at summary reports.
  • Micro-timing effects: Small differences in when emails are sent that produce meaningful changes in engagement — patterns that emerge only across thousands of rows, invisible at the individual level.

No human would find these patterns by scrolling through 10,000 rows. That's the point — AI compresses the exploration that used to take hours into seconds, so you can spend your time on interpretation, not excavation.

⚡

Spot the trend

25 XP
Take any dataset you have access to (even a simple personal budget spreadsheet) and paste 20-50 rows into AI with this prompt: > "Analyze this data and tell me the three most interesting patterns or insights. Then suggest one action I should take based on what you found." Write down: 1. Were any of the patterns genuinely surprising? 2. Did AI suggest an action that makes sense? 3. Would you have found these patterns by scanning the data yourself?

The complete AI + spreadsheet workflow

Here's the process from messy data to actionable insight, visualized:

Time savings: before vs. after AI

TaskWithout AIWith AITime saved
Write a complex formula20-45 min (Googling, debugging)2-5 min~85%
Clean 10,000 rows of messy data2-4 hours15-30 min~85%
Create a presentation-ready chart30-60 min5-10 min~80%
Find hidden trends in dataOften never done5-10 minInfinite (it wasn't happening before)

Where AI saves the most analyst time

⚡

Your full AI + data workflow

50 XP
Pick a real spreadsheet task you have coming up this week (or use one from last week). Walk through the complete workflow: 1. **Describe the data** — Write a 2-3 sentence description of the spreadsheet (columns, row count, what it tracks) 2. **Identify the mess** — Paste a sample into AI and ask it to audit data quality 3. **Write the formulas** — Ask AI for the specific formulas you need (at least 2 different formulas) 4. **Request a trend analysis** — Ask AI to spot patterns 5. **Ask for a chart** — Describe the chart you'd present to your boss Document each step. How much time would this have taken you without AI? How long did it take with AI?

Back to Priya

She's now on her fourth quarterly operations report since that formula revelation. The INDEX(MATCH(IF(ISNUMBER(...)))) that used to take her 45 minutes of Googling and debugging? She describes it in plain English, pastes the result, and moves on. The report that used to consume most of her Friday afternoon now gets done by lunch.

What changed wasn't the data. It was the workflow — and the willingness to describe the problem instead of guessing at the syntax.

Key takeaways

  • You never need to memorize a formula again. Describe what you want in plain English, and AI writes the formula. If it errors, paste the error back and AI fixes it.
  • Messy data is no longer a half-day nightmare. Paste a sample, get a cleanup plan with formulas, apply them. What took hours now takes minutes.
  • AI spots patterns humans miss. Trends hiding in 10,000 rows of data become visible in seconds — but you still decide which patterns actually matter to your business.
  • Think of AI as a brilliant intern who has never seen your business. It knows every formula but doesn't know your context. You provide the "what" and "why," AI provides the "how."

?

Knowledge Check

1.When asking AI to write a spreadsheet formula, what information should you always include?

2.What should you do when an AI-generated formula returns an error?

3.Why is AI compared to a 'spreadsheet-savvy intern' rather than an expert analyst?

4.What is the most efficient way to clean a messy dataset with AI?

Previous

AI for Research & Analysis

Next

Automating Repetitive Work