What Copilot Is
Copilot is Microsoft's AI assistant, built into newer, online versions of Microsoft 365. In Excel it sits as a button on the Home tab (its exact spot moves between updates). You type a request in plain language and it answers in the side panel.
It is an optional helper, not a part of the course you must have. It needs a recent, internet-connected version of Excel and the right licence, so it may not be available on every computer, and that is fine. Everything in this course works without it. Where Copilot does help, it helps most with one thing in particular: turning "what I am trying to do" into "the formula that does it".
You do not need to know that the function is called CONCAT or SUMIF. You only need to describe, in ordinary words, what you want to happen. Naming the function is Copilot's job; knowing what you want is yours.
What It Does Well
Copilot is genuinely good at the language side of spreadsheets:
- Suggesting a formula from a description. You say what you want in plain English; it writes the formula, even when you do not know the function's name.
- Explaining a formula you have inherited. Paste a formula from someone else's sheet and ask "what does this do?"; it explains it in plain language.
- Helping fix an error. Show it the error and the formula, and it suggests the likely cause and a fix.
- Summarising and describing. It can describe trends in a table or draft wording for a report.
Where It Falls Short
Copilot is a confident writer, which is a strength and a trap. It can give a wrong answer in the same calm, sure voice as a right one. So it is weak exactly where being confidently wrong matters:
- Do not trust it for exact numbers. Let it write the formula, but check the result against a real calculation. Do not take a total it simply tells you as fact.
- Menu steps can be out of date. Buttons move between Excel versions, so step-by-step "click here, then there" can be slightly wrong. Use it as a pointer, then look for the button.
- It does not know your data. It cannot see whether a column is text-that-looks-like-numbers, or whether your dates are real dates. You still need the basics from this course to spot that.
How to Ask Well
A good prompt gives Copilot three things: where your data is, what you want to happen, and where the answer should go. The more plainly you say those, the better the formula you get back.
- Name the columns or cells. "Column A", "the amount in B2", "the dates in column D".
- Say what you want in everyday words. "join them into one", "add up only the Darwin ones", "show a blank instead of an error".
- Say where the answer goes. "in column C", "in the cell next to it".
- Give an example if you can. "like 'Jordan' and 'Lee' becoming 'Jordan Lee'." An example removes almost all guesswork.
The examples below show the pattern. Each is the kind of thing you could type, even without knowing the function's name.
Prompts: Build a Formula
"I have first names in column A and surnames in column B. In column C I want the full name, like 'Jordan Lee', with a space in between. What formula do I use?"
=A2&" "&B2The & joins pieces of text together, and " " is the space between them. Copilot might instead suggest =CONCAT(A2," ",B2) or =TEXTJOIN(" ",TRUE,A2,B2); all three do the same job.
"In column E, I want it to say 'Over' when the amount in column B is bigger than the budget in column A, and 'OK' otherwise."
=IF(B2>A2,"Over","OK")That is the IF function: a test, then what to show if it is true, then if it is false.
"How do I count how many rows in column B say 'Yes'?"
=COUNTIF(B2:B100,"Yes")And for adding instead of counting: "Add up only the amounts in column C where column B is 'Darwin'" gives =SUMIF(B2:B100,"Darwin",C2:C100).
"Column A has email addresses. In column B I just want the part before the @ sign."
=TEXTBEFORE(A2,"@")It may also suggest using Flash Fill (type one example, press Ctrl + E) instead, which is often the simplest answer of all for tidying text.
"Column B has birthdates. In column C I want each person's age in whole years, as at today."
=DATEDIF(B2,TODAY(),"Y")This works because, as Session 1 showed, Excel stores dates as numbers, so it can do maths with them.
Prompts: Fix an Error
When a cell shows an error code instead of an answer, paste the formula and the error into Copilot and ask what is wrong. Be specific about which cell and what you expected.
"My formula in D2 shows #DIV/0!. Here it is: =C2/B2. How do I make it show a blank instead of the error when B2 is empty?"
=IFERROR(C2/B2,"")IFERROR wraps any formula and shows your own result (here, a blank) instead of a scary code.
"What does this formula do, in plain English? =VLOOKUP(A2,$D$2:$F$50,3,FALSE)"
It will tell you, in words, that the formula looks up the value from A2 in the first column of the table D2:F50 and returns the matching value from the third column, with FALSE meaning an exact match. Explaining a formula is one of the things Copilot does most reliably.
"I copied =B2*E1 down a column to work out GST, but the lower rows are wrong. What did I do wrong?"
=B2*$E$1It should spot that the rate reference E1 drifted as you copied, and tell you to lock it with dollar signs as an absolute reference, exactly the lesson from Session 2.
Always Check the Answer
Whatever Copilot gives you, the final check is yours. The safe habit is simple: let Copilot write the formula, then confirm the result with something you can see.
- Sanity-check one row by hand. If Copilot's profit formula says a line made $55, do that one sum in your head and see if it matches.
- Use the status bar. Select a few numbers and compare their Sum on the status bar with a total Copilot produced.
- Read the formula it gave you. You now know enough to recognise SUM, IF, and a locked
$E$1reference. If the formula looks reasonable and the result matches your spot-check, trust it.