copilot in excel
66 TopicsAdding email addresses using Copilot in Excel
Greetings, this is the second in a series of posts that provides examples of what is possible with Copilot in Excel. Today I will continue with the list of employees from yesterday. I would like to add an email address column to this table. For this company, Wing Tip Toys (fictitious), Email addresses have a period between the first and last name and the domain is Wingtiptoys.com. To accomplish this, I'll start by clicking on the copilot button on the right side of the Home tab, showing the copilot pane and type the prompt: Add an email column where email is in the form Firstname.lastname@wingtiptoys.com Copilot in Excel looks at the content in the table and then suggests inserting a column that adds a calculated column with a formula that concatenates everything together. Column G: Email Generates a professional email address for each individual by combining their first and last names in lowercase, separated by a period, and appending "@wingtiptoys.com". =LOWER([@[First name]]&"."&[@[Last name]]&"@wingtiptoys.com") Hovering the mouse cursor over the "Insert columns" button in the copilot pane shows a preview of what inserting the new column formulas will look like. From the preview, it looks like it is doing what I wanted. Clicking on the Insert Columns button will accept the proposed change, inserting a new calculated column formula that concatenates the first and last names with a period in between and appends the company domain at the end, giving me the result I was looking for! Over the coming weeks I will be sharing more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.1.6KViews2likes0CommentsUsing Copilot in Excel to split columns
Hi Everyone, this is the first in a series of posts to show you some of the things that are possible to do with your workbooks using Copilot. Today I will start with this list of employees: I would like to have the names in this list separated into 2 columns for the first and last names. To accomplish this, I'll start by clicking on the copilot button on the right side of the Home tab, showing the copilot pane and type the prompt: Split the name column into first and last name Copilot in Excel looks at the content in the list and then suggests inserting 2 new calculated column formulas to split the first and last names from the Name column. and F: 1. First name Extracts the first name of each individual by splitting the full name at the space and selecting the first part. =INDEX(TEXTSPLIT([@Name]," ",,TRUE),1,1) Show explanation 2. Last name Extracts the last name of each individual by splitting their full name and selecting the last part. =INDEX(CHOOSECOLS(TEXTSPLIT([@Name]," ",,TRUE),-1),1,1) Hovering the mouse cursor over the "Insert columns" button in the copilot pane shows a preview of what inserting the new column formulas will look like. From the preview, it looks like it is doing what I wanted. Clicking on the Insert Columns button will accept the proposed change, inserting 2 new columns with calculated column formulas that split out the first and last names, giving me the result I was looking for! Over the coming weeks I will be sharing more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.2.9KViews2likes2CommentsQuickly transform some data for analysis using Copilot in Excel
Hi everyone, over the last few weeks we have had a series of posts to show you some of the things that are possible to do with Copilot in Excel. We have transitioned from daily to weekly and we are posting on the Excel blog (https://aka.ms/xlblog). This week's example shows how to quickly transform this table: Into this: To read how to use Copilot to do this, click here: Quickly transform some data for analysis using Copilot in Excel. Microsoft Excel Team1.4KViews1like0CommentsGetting help from Copilot in Excel creating a formula to calculate distinct values
Hi everyone, over the last few weeks we have had a series of posts to show you some of the things that are possible to do with Copilot in Excel. This week I have a table of event locations, and I’d like to figure out a formula to count up the distinct locations. I would like to find out how many locations are listed, so I ask Copilot: How many distinct locations are there? I analyzed data in B2:C156, and here's what I found: Distinct Count of Location 50 Copilot said: There are 50 distinct locations. Copilot returns an answer of 50, but I would like to have a formula that updates as the list changes. A coworker suggested the formula below, but I don’t understand it. I ask copilot: A coworker gave me this formula to calculate the distinct locations, can you tell me how it works: =SUM(--(FREQUENCY(MATCH(C:C, C:C, 0), MATCH(C:C, C:C, 0)) > 0)) This formula calculates the number of distinct locations in column C. Here's how it works: MATCH(C:C, C:C, 0): This part of the formula creates an array of the positions of each value in column C. The 0 indicates an exact match. FREQUENCY(MATCH(C:C, C:C, 0), MATCH(C:C, C:C, 0)): The FREQUENCY function is used to count the number of times each value appears in the array created by the MATCH function. It returns an array where each element represents the frequency of the corresponding value. FREQUENCY(...) > 0: This part of the formula creates a boolean array where each element is TRUE if the corresponding frequency is greater than 0, and FALSE otherwise. --(FREQUENCY(...) > 0): The double unary operator (--) converts the boolean array into an array of 1s and 0s, where TRUE becomes 1 and FALSE becomes 0. SUM(...): Finally, the SUM function adds up the array of 1s and 0s, giving the total count of distinct locations. I understand the formula, but it seems overly complicated. I’d like to see if Copilot can do better. I ask: Can you simplify the formula? Yes, I can simplify the formula. Here is a more straightforward way to count distinct locations using the UNIQUE and COUNTA functions: =COUNTA(UNIQUE(Table19[Location])) That is much simpler! I copy the formula from the copilot pane and copy into my workbook. Now when I make changes to the table, the unique location count updates automatically. lls with the values “Unique Locations” and the value “50” returned from the formula that was entered, next to the event location table. Here are some additional examples from the last six weeks if you missed them: Copilot in Excel examples for the week of August 12th Copilot in Excel examples for the week of August 19th Copilot in Excel examples for the week of August 26th Copilot in Excel examples for the week of September 3rd Copilot in Excel examples for the week of September 9th Copilot in Excel examples for the week of September 16th Stay tuned, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.2.8KViews1like1CommentCopilot in Excel riddles
Hi everyone, over the last few weeks we have had a series of posts to show you some of the things that are possible to do with Copilot in Excel. Today we’re going to try something fun: tell me a riddle about an Excel feature Sure! Here’s a riddle for you: I can sum, I can average, I can count with ease, I can find the max and min, if you please. I live in a cell, but I’m not in jail, What am I? Can you unveil? What Excel feature am I? What is the answer? The answer to the riddle is a formula! 😊 Formulas in Excel can sum, average, count, find the maximum and minimum values, and perform many other calculations within a cell. Give me a riddle where the answer is conditional formatting Sure! Here's a riddle for you: I change colors based on rules, Highlighting cells, making them cool. With red, green, and yellow hues, What Excel feature am I, can you deduce? What am I? 😊 Maybe try with your friends or coworkers and test their Excel knowledge in a fun way. Over the coming weeks I will continue to share more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.455Views1like0CommentsGenerating links to maps using Copilot in Excel
Hi everyone, over the last few weeks we have had a series of posts to show you some of the things that are possible to do with Copilot in Excel. I have a table that I downloaded showing meteorite landings, including latitude and longitude. I would like to make it easy to see where the locations are on a map so I ask Copilot: Tell me how to generate a column that would take latitude and longitude and make it into a link to a bing map To generate a column that converts latitude and longitude into a Bing Maps link, you can use the following formula. Assuming your latitude is in column G and longitude is in column H, you can create a new column with this formula: =HYPERLINK("https://www.bing.com/maps?q=" & G2 & "," & H2, "Bing Map") Here's how to do it step-by-step: Insert a new column where you want the Bing Maps links to appear. In the first cell of the new column, enter the formula above. Drag the fill handle down to apply the formula to the rest of the cells in the column. This will create clickable links to Bing Maps for each row based on the latitude and longitude values. Over the coming weeks I will continue to share more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.751Views1like1CommentCopilot in Excel examples for the week of September 16th
The Excel team is happy to share some examples of how Copilot in Excel can help you. Here's what you can look forward to this week: Monday, 16-Sep - Detecting Palindromes using Copilot for Excel Tuesday, 17-Sep – Generating links to maps using Copilot in Excel Wednesday, 18-Sep – Copilot in Excel riddles Thursday, 19-Sep – Sailing itinerary with Copilot in Excel Friday, 20-Sep – Using Copilot in Excel for my photography hobby Here are some additional examples from the last few weeks if you missed them: Copilot in Excel examples for the week of August 12th Copilot in Excel examples for the week of August 19th Copilot in Excel examples for the week of August 26th Copilot in Excel examples for the week of September 3rd Copilot in Excel examples for the week of September 9th Stay tuned, Microsoft Excel Team2.5KViews1like0CommentsGrouping dates by quarter using Copilot in Excel
Hi everyone, over the last few weeks we have had a series of posts to show you some of the things that are possible to do with Copilot in Excel. Today I will start with a (fictional) list of books and book sales. I would like to group sales by quarters to see the impact on my business. I ask Copilot: I want to see sales by quarter based on the release date The total sales by quarter based on the release date are as follows: Q1: $1,599,100, Q2: $4,672,300, Q3: $36,100, Q4: $576,100. See the PivotChart above for more details. I click on the “Add to a new sheet” button in the Copilot pane and this PivotTable and chart are inserted giving me the view of book sales by quarter that I was looking for. Over the coming weeks I will continue to share more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.972Views1like3CommentsCopilot in Excel examples for the week of September 9th
The Excel team is happy to share some examples of how Copilot in Excel can help you. Here's what you can look forward to this week: Monday, 9-Sep – Using Copilot in Excel to show data insights Tuesday, 10-Sep – Grouping dates by quarter using Copilot in Excel Wednesday, 11-Sep – Getting insights for book sales using Copilot Thursday, 12-Sep – Using Copilot for Excel to create a chart (microsoft.com) Friday, 13-Sep – Analyzing bike sales using Copilot for Excel Here are some additional examples from last few weeks if you missed them: Copilot in Excel examples for the week of August 12th Copilot in Excel examples for the week of August 19th Copilot in Excel examples for the week of August 26th Copilot in Excel examples for the week of September 3rd Stay tuned, Microsoft Excel Team2.2KViews1like0CommentsUsing Copilot in Excel to convert survey responses into an overall score
Greetings, We’re continuing our series of posts to show you some of the things that are possible to do with Copilot in Excel. Today I have the results from a recent survey for a training session. I’d like to calculate a satisfaction score for each participant based on the responses for each of the 4 questions. was effective. Responses for the last 4 columns have a number followed by a word. An example is 4 – Agree. I use the following prompt to ask Copilot to create a score: Add a column to calculate the overall satisfaction from the session Looking at B2:F10, here's 1 formula column to review and insert in Column G: Overall Satisfaction Calculates the average satisfaction score for each survey response by converting the first character of each rating to a numeric value, summing these values, and then dividing by 4 (number of questions). =SUM(VALUE(LEFT([@[Overall, this session was valuable.]],1)), VALUE(LEFT([@[I had opportunities to interact and engage during the session.]],1)), VALUE(LEFT([@[The content was valuable.]],1)), VALUE(LEFT([@[The presentation of the session was effective.]],1)))/4 I hover over the Insert column button to see a preview of the formula that is suggested: I click on the insert column button, getting the following table which quickly completed my task. Over the coming weeks I will be sharing more examples of what you can do with Copilot in Excel. Thanks for reading, Microsoft Excel Team *Disclaimer: If you try these types of prompts and they do not work as expected, it is most likely due to our gradual feature rollout process. Please try again in a few weeks.511Views1like0Comments