How to use Copilot Formula Completion in Excel (Beginner’s guide)

If you’ve ever looked at a blank cell and wondered which function to use, what range to select, or where the commas go, this guide is for you. You don’t need to memorise formulas, even if you’re just starting out. Copilot Formula Completion suggests and completes formulas as soon as you type =, so you can write accurate formulas more quickly and confidently.

When you start typing a function, such as SUM or XLOOKUP, after the = sign, Excel suggests a full formula with the function and cell references. This feature helps you avoid mistakes and saves time on common tasks like totals, lookups, and counts.

I’ve been teaching Microsoft Office for 20+ years, and I’m constantly helping busy professionals who use Excel every day but don’t make it their core job. Features like Copilot Formula Completion suggestions can make a huge difference—less trial‑and‑error, fewer headaches, and more time spent on insights.

Quick note: Copilot Formula Completion is designed to speed up formula writing in Excel for Windows and is rolling out to Microsoft 365 users. This feature might not be available to everyone right away—it depends on which version of Excel you have and how your updates are configured.

Excel Practice Files

What is Copilot Formula Completion in Excel?

Copilot Formula Completion is an AI-powered tool in Excel that suggests and completes formulas as soon as you start typing =. It looks at your sheet’s context, such as headers, nearby cells, tables, and existing formulas, and then shows a suggestion with a short plain-English description and a preview of the result. This helps you quickly insert the right

A cursor clicks into the ‘Full Name’ column and enters a formula that combines the Firstname and Lastname columns using Copilot Formula Completion, automatically filling the full names down the list.

Known limitation: Microsoft says suggestions do not include formulas that reference other worksheets in the same file. This may change in the future (see References).

How do I get access or turn it on?

This feature is only available to people with a Copilot add-on licence. Here’s how to check if you have one.

Check using the Copilot Chat pane

  1. Open Excel and click the Copilot button on the ribbon to open the Copilot Chat pane.
  2. Look at the icons at the top of the pane. If you see a Work icon next to the Web icon, you have a Copilot licence linked to your work account.
A screenshot of Excel showing the Copilot pane open on the right‑hand side. At the top of the pane are icons indicating Work, Web, and other Copilot sources. Below them is a prompt that reads ‘Need insights? Just ask,’ followed by a text box labelled ‘Message Copilot’ where users can type questions. At the top of the Excel window, the ribbon displays the Copilot button.

Tip: If you don’t see the Work icon, you’ll need to speak with your IT team or Microsoft 365 administrator about adding the Copilot license to your account.

How do I use Copilot Formula Completion?

When you’re ready to create a formula:

  1. Click the cell where you want the result.
  2. Type = and pause for a moment. Copilot will propose a formula based on your table headers and nearby data. Tiny sparkles will be displayed in front of the suggested formula.
  3. If nothing appears, start typing the formula one character at a time (e.g., s → su → sum) to help Excel recognise the function.
  4. Read the tool tip description and check the suggested formula.
  5. Press Tab or Enter to accept the suggestion (or Esc to cancel).

Tip: Formula completion works best when your data is clearly labelled and set up as a Table (use Ctrl + T). But if your column headings and row labels are clear, you don’t have to format your data as a Table.


Flash Fill vs Copilot Formula Completion

  • Flash Fill is fantastic for quick data cleaning (split names, change case, fix codes). It copies patterns, but the results are static once created. If you’re new to Flash Fill, check out my blog post on “How to change case without a formula” to see how amazing it is.
  • Copilot Formula Completion writes dynamic formulas that recalculate when your data changes. Perfect for totals, lookups, and counts.

Rule of thumb: Use Flash Fill for quick, one-time pattern fixes. Use Copilot Formula Completion when you need a formula that updates as your data changes.

Practical examples (business scenarios)

Below are step-by-step examples using the exact formulas found in each sheet of your file. Each example shows how to use Copilot Formula Completion suggestions to help you write the formula, using regular cell references as per your worksheets.

Download the practice file right now and follow along with me.

Example 1: Combine First and Last Name (Names sheet)

Scenario: You want to combine “Firstname” and “Lastname” into “Full Name”.

Formula in worksheet:

  • C2: =A2&” “&B2 or =CONCAT(A2,” “,B2)

How to use Copilot Formula Suggestions:

  1. Go to the Names sheet.
  2. Click in cell C2.
  3. Type “=” and pause. Copilot will scan cells A2 and B2. Tiny sparkles will appear in front of Copilot’s formula suggestion, along with a tooltip indicating the function of the formula.
Excel screenshot showing a Copilot suggested formula in cell C2 that combines first and last names using =A2&" "&B2. Copilot suggests the formula with a tooltip, “Combine first and last names.” Columns are labelled Firstname, Lastname, and Full Name.
  1. If no suggestion appears, or you would prefer another formula, start typing the correct formula. For example, to insert the CONTCAT function, begin typing =co and Copilot should suggest the CONCAT formula.
Excel screenshot showing a Copilot suggested formula being entered in cell C2 to combine first and last names using =CONCAT(A2," ",B2). The CONCAT function is suggested in a dropdown list, and a tooltip says “Concatenate first and last names.” Columns are labelled Firstname, Lastname, and Full Name.
  1. Once you are happy with the formula, press TAB or ENTER to accept it.
Excel screenshot showing cell C2 in the "Full Name" column with the formula =CONCAT(A2," ",B2), which combines the first and last names from columns A and B. The result "Able Brown" appears in C2. Columns are labelled Firstname, Lastname, and Full Name.

Summary: CONCAT is a useful function for combining names, but inserting extra spaces between the names can be time-consuming. Copilot Formula Suggestions help by filling in the right arguments, saving you time and reducing mistakes.

Example 2: Extract City and Region (Branches sheet)

Scenario: You want to split the “Branch” column into “City” and “Region”.

Formulas in worksheet:

  • B2: =TEXTBEFORE(A2,”, “)
  • C2: =TEXTAFTER(A2,”, “)

How to use Copilot Formula Suggestions:

  1. Go to the Branches sheet.
  2. Click in cell B2.
  3. Type = and pause. Copilot will scan A2.
  4. If no suggestion appears, start typing =TEXTBEFORE, and Copilot should suggest the formula.
Excel screenshot showing a Copilot Formula Completion suggestion in cell B2. The formula =TEXTBEFORE(A2,", ") is suggested to extract the city name from the "Branch" column. A tooltip reads “Return city for branch in A2.” Columns are labelled Branch, City, and Region.
  1. For C2, start typing = and Copilot should suggest the formula. In the example below, you will see that Copilot has suggested using the TEXTAFTER function, nested within the TRIM formula, because it has detected an extra space that needs to be removed.
Excel screenshot showing a Copilot Formula Completion suggestion in cell C2. The formula =TRIM(TEXTAFTER(A2,", ")) is suggested to extract the region name from the "Branch" column. A tooltip reads “Extract region name from branch.” Columns are labelled Branch, City, and Region.
  1. Review and accept.

Summary: TEXTBEFORE and TEXTAFTER are newer functions that make it easy to split text, but their names and arguments can be confusing. Copilot Formula Suggestions help you choose the right function and delimiter without having to guess.

Quick note: If your data uses a different separator, such as a comma instead of a comma and space, change the formula or your data to get the best results.

Example 3: Calculate Total Including Tax (Total inc Tax sheet)

Scenario: You want to calculate the total, including 15% tax, for all invoices.

Formula in worksheet:

  • B12: =SUM(B2:B11)*1.15

How to use Copilot Formula Suggestions:

  1. Go to the Total inc Tax sheet.
  2. Click in cell B12.
  3. Type = and pause. Copilot will scan B2:B11.
  4. If no suggestion appears, start typing =SUM, and Copilot should suggest the formula.
  5. Review and accept.
Excel screenshot showing a Copilot Formula Completion suggestion in cell B12. The formula =SUM(B2:B11)*1.15 is suggested to calculate the total amount including 15% tax for a list of invoice amounts. A tooltip says “Calculate total including 15% tax.” Columns are labelled Invoice # and Amount (excl 15% Tax).

Summary: Copilot Formula Suggestions make it simple to build formulas that combine functions, such as SUM, with calculations like multiplying by 1.15. This means you don’t have to remember the order of operations or which ranges to use.

Example 4: Calculate Gross Profit Margin % (Gross Profit sheet)

Scenario: You want to calculate the gross profit percentage for each product.

Formula in worksheet:

  • D2: =(C2-B2)/C2

How to use Copilot Formula Suggestions:

  1. Go to the Gross Profit sheet.
  2. Click in cell D2. Note that the column heading in D1 will help Copilot to suggest the correct formula.
  3. Type = and pause. Copilot will scan B2 and C2.
  4. If no suggestion appears, start typing =(C2-B2)/C2 and Copilot should suggest the formula.
  5. Review and accept.
Excel screenshot showing a Copilot Formula Completion suggestion in cell D2. The formula =(C2-B2)/C2 is suggested to calculate the gross profit margin percentage using the cost price and sale price columns. A tooltip says “Calculate gross profit margin percentage.” Columns are labelled Product, Cost Price, Sale Price, and Gross Profit Margin %.

Example 5: Sum Total Sales by Region (Region Sales sheet)

Scenario: You want to sum the total sales for each region.

Formula in worksheet:

  • E2: =SUMIF(A2:A11,D2,B2:B11)

How to use Copilot Formula Suggestions:

  1. Go to the Region Sales sheet.
  2. Click in cell E2. Note that the column headings and the row label in cell D2 are named to help Copilot suggest the correct formula.
  3. Type = and pause. Copilot will scan the data.
  4. If no suggestion appears, start typing =SUMIF, and Copilot should suggest the formula.
  5. Review and accept.
Excel screenshot showing a Copilot Formula Completion suggestion in cell E2. The formula =SUMIF(A2:A11,D2,B2:B11) is suggested to calculate the total sales amount for the selected region, "Canterbury." A tooltip says “Calculate total for selected region.” Columns are labelled Region, Amount, and Total $ by Region.

Summary: SUMIF is a powerful function, but it needs three arguments in the correct order. Copilot Formula Suggestions help you avoid errors and quickly create a summary by region.

Example 6: Lookup Product Price (Lookup Product sheet)

Scenario: You want to look up the unit price for a product code.

Formula in worksheet:

  • E2: =XLOOKUP(D2,A2:A6,B2:B6,”Not Found”)How to use Copilot Formula Suggestions:

How to use Copilot Formula Suggestions:

  1. Go to the Lookup Product sheet.
  2. Click in cell E2. Note that the column headings are named to help Copilot suggest the correct formula.
  3. Type = and pause. Copilot will scan the data.
  4. If no suggestion appears, start typing =XLOOKUP, and Copilot should suggest the formula.
  5. Review and accept.
Excel screenshot showing a Copilot Formula Completion suggestion in cell E2. The formula =XLOOKUP(D2,A2:A6,B2:B6,"Not Found") is suggested to return the unit price for the lookup code "P-103." A tooltip says “Return unit price for lookup code.” Columns are labelled Code, Unit Price, Lookup Code, and Unit Price.

Summary: XLOOKUP is simpler than VLOOKUP, but it still needs several range references and extra arguments. Copilot Formula Suggestions save you time because you don’t have to remember the order of arguments or enter the ranges yourself.

Example 7: Count Orders Due This Week (Due Dates sheet)

Scenario: You want to count how many orders are due this week (next 7 days).

Formula in worksheet:

  • G1: =COUNTIFS(B2:B11,”>=”&TODAY(),B2:B11,”<=”&TODAY()+7)

How to use Copilot Formula Suggestions:

  1. Go to the Due Dates sheet.
  2. Click in cell G1.
  3. Type = and pause. Copilot will scan B2:B11.
  4. If no suggestion appears, start typing =COUNTIFS, and Copilot should suggest the formula.
  5. Review and accept.
Excel screenshot showing a formula being entered in cell G1 to count orders due in the next week. The Copilot Formula Completion suggestion is =COUNTIFS(B2:B11,">="&TODAY(),B2:B11,"<="&TODAY()+7), with a tooltip that says “Count orders due in next week.” Columns are labelled Order # and Due Date.

Summary: COUNTIFS is useful for counting with multiple conditions, but the syntax can be tricky. Copilot Formula Suggestions help you set up the criteria and ranges correctly, so you can focus on your analysis.

Relates to: functions and features you’ll use alongside Copilot

Troubleshooting and Tips

Q: I typed = and nothing happened. What should I do?

  • Check you have a Copilot add-on license (see above).
  • Save to OneDrive/SharePoint and turn AutoSaveOn.
  • Restart Excel and then try again.
  • Once you type =, wait a second. Copilot may still be loading. A progress indicator can appear on the bottom border of the cell.
  • Type one character at a time (e.g., s → su → sum) to help Excel recognise the function.
  • Use descriptive table/column names and row labels; clear headers and labels give better suggestions.
  • Check your references before pressing Enter. Copilot is helpful, but you are the final check.

Q: Can I turn formula completion off?

  • Yes. Go to File > Options > Copilot and select Hide formula completion suggestions for a timeframe.

Q: Why didn’t Copilot suggest a formula that references another sheet?

  • That’s a known limitation of formula completion right now; Microsoft may add this in the future.

FAQs

Q: Does Copilot Formula Completion work offline?

A: You’ll get the best results when you’re signed in to Microsoft 365, and your file is saved with AutoSave on. Check with your IT team for any cloud/storage policies.

Q: Is this the same as Flash Fill?

A: No. Flash Fill copies patterns and is static. Copilot Formula Completion writes dynamic formulas that recalculate as your data changes.

Q: What if the suggestion is wrong?

A: Press Esc to dismiss and keep typing. Try starting with the function name (e.g., SUMIFS or XLOOKUP) to guide the suggestion.

Q: Do I need special licensing?

A: You need Microsoft 365 with the latest Excel updates. Some capabilities may roll out gradually across Insider/Production channels.

Q: Will Copilot create advanced models for me?

A: No. It’s built to speed up formula writing, not replace sound spreadsheet design. Use it to save time, then check the logic.

Q: Can I use this on a shared workbook?

A: Yes. Just make sure the file is saved to OneDrive or SharePoint with AutoSave turned on so your changes are saved.

Q: Does this work for formulas between worksheets and files?

A: At the time of writing this blog, this functionality wasn’t available.

References

Watch The Excel Video Tutorial

[Watch on YouTube] /  [Subscribe to our YouTube Channel]

Excel Practice File Download

  • Sign up to unlock the practice file

Conclusion

If formulas have ever felt like a waste of time or knocked your confidence, Copilot Formula Completion can help you get them right the first time. You’ll save time on every formula, make fewer mistakes, and have more mental space for analysis instead of worrying about syntax.

Since Copilot suggests standard Excel formulas, your work stays clear and easy for you to maintain.

Want to feel more confident with formulas?

Join my super-popular self-paced Excel course, ‘Excel 1-2-3, Go from Beginner to Pro,’ and learn how to use Copilot to save time and work smarter every day.

Or, book a live online coaching session with me to improve your skills and address any personal challenges.

If you’re not yet ready to take a course, I’m here to support you! Check out my YouTube tutorials and blog articles—they’re designed to help you build your skills and confidence. Let’s embark on your learning journey together!

YouTube: https://www.youtube.com/c/excelatwork
Search my Blog: https://www.excelatwork.co.nz/blog/

Loved This Tip? Learn Even More in my Self-Paced Beginner Excel Course

Collection of devices with different parts of the Excel at Work Excel self-paced online courses being displayed with captions.

Excel Stage 1 is designed specifically for individuals who are totally new to Excel, have been self-taught or have received bits and pieces of training from multiple sources.

$347+gst


Sharyn Baines
Sharyn Baines
Certified Microsoft Office Specialist

Was this blog helpful? I’m here to empower your journey with Excel, aiming to make your daily tasks more efficient and boost your potential.

Share your thoughts in the Comments below – your insights not only enrich others, they also help me tailor future content to your needs.

And if you’re looking to take a step further, join our exclusive ‘Insider Group‘. As a member, you’ll receive Weekly Super-Tips, and early access to in-depth tutorials. Sign up Today!

Happy Excel-ling!!

Recommended

Leave a Reply

Your email address will not be published. Required fields are marked *