- Define functions in Microsoft Excel
- Use lookup functions and formulas
- Use logical functions and formulas
- Use financial functions and formulas
Open the data file and copy it into Excel. You should have two worksheets of data. Save the workbook as LastName.Functions.xlsx replacing “Last Name” with your last name.
Activity 1: Customer Orders
You work for an online retail company and need to match customer orders with their shipping details. The data includes order numbers, customer names, product IDs, and shipping information.
Directions:
- Find the worksheet titled “Lookup”
- Insert three columns to the left of the column containing IDs
- In cell A1 enter “Lookup Name” and in cell B1 enter “Carrier”
- Now we want to create a VLOOKUP formula that scans the data for a given name, then outputs the shipping carrier of that customer. In cell B2 enter the function =VLOOKUP(A2,E2:H805,4,FALSE)
When you enter a customer’s name in A1, their shipping carrier will appear in B2.
Activity 2: Employee Performance
You need to evaluate employee performance based on sales targets and attendance. The data includes employee IDs, names, monthly sales, and attendance rates.
Directions:
- Find the worksheet titled “Logical”
- Calculate sales growth:
- Insert a new column after “Previous month’s sales” and title the column “Sales growth (%)” in cell E1.
- Use the formula =(C2-D2)/D2 to calculate percent growth.
- Use the number formatting tools to convert Column E to percentages.
- Calculate conversion rate:
- Enter “conversion rate (%)” in cell H1.
- Use the formula G2/F2 to find the percent of leads converted to sales.
- Use the number formatting tools to convert Column H to percentages.
- Determine the performance rating:
- Enter “Performance Rating” in cell I1.
- Use the formula =IF(AND(C2>=5000,E2>=.10,H2>=.20),”Excellent”,IF(AND(C2>=3500,E2>=.05,H2>=.15),”Good”,IF(OR(C2>=3000,E2>=0,H2>=.10),”Satisfactory”,”Needs Improvement”)