Chat with us, powered by LiveChat You work for a clothing distributor that has locations in Iowa, Minnesota, and Wisconsin. You will use date and logical functions to complete the main employee data set, use database funct | Wridemy

You work for a clothing distributor that has locations in Iowa, Minnesota, and Wisconsin. You will use date and logical functions to complete the main employee data set, use database funct

Exp22_Excel_Ch07_ML2_Employees

  

Project Description:

You work for a clothing distributor that has locations in Iowa, Minnesota, and Wisconsin. You will use date and logical functions to complete the main employee data set, use database functions to calculate key summary statistics and create a map, and use financial functions to complete a loan amortization table.

     

Start Excel. Download and open   the file named Exp22_Excel_Ch07_ML2_Employees.xlsx.   Grader has automatically added your last name to the beginning of the   filename.

 

Column D contains the city each   employee works in. You want to display the state.
 

  Make sure the Data worksheet is active. In cell G7, insert the SWITCH   function to evaluate the city stored in cell D7. In this sequence, switch Des Moines for Iowa, St. Paul for Minnesota, and Milwaukee for Wisconsin. Use mixed   references for the state names in the range A2:A4. Copy the function from   cell G7 to the range G8:G31.

 

Column C contains the actual   hire dates for the employees. You want to extract only the year in column H.
 

  In cell H7, insert the YEAR function to extract the year from the Hire Date   in cell C7. Copy the function from cell H7 to the range H8:H31.

 

Next, you want to determine how   many years each employee has worked for the company.
 

  In cell I7, insert the YEARFRAC function to calculate the years between the   first employee's Hire Date and the last day of the year contained in cell C2.   Use a mixed reference appropriately. Copy the function from cell I7 to the   range I8:I31.

 

You want to determine what day   of the week each employee was hired.
 

  In cell J7, insert the WEEKDAY function to display the day of the week for   the first employee's Hire Date. Copy the function from cell J7 to the range   J8:J31.

 

The values returned in the range J7:J31 are whole numbers. You want   to display the result as the actual weekday names.
 

  Format the range J7:J31 as a custom number format dddd.

 

Employees are scheduled for a   six-month review based on their hiring month.
 

  In cell K7, insert the EDATE function to identify the month that is six   months from the first employee's Hire Date. Copy the function to the range   K8:K31.

 

Your next task is to calculate the bonus for the first employee. If   the employee's Performance Score is greater than or equal to 4.5, the bonus   is $3,000. If the Performance Score is 4.0-4.9, the bonus is $2,000. If the   Performance Score is 3.0-3.9, the bonus is $1,000. No bonus is given if the   Performance Score is below 3.0.
 

  In cell L7, insert the IFS function to enter the bonus based on the   Performance Score for the first employee. Use the respective scores stored in   cells E2, E3, and E4 for the individual logical tests. Use the respective   bonuses in cells F2, F3, and F4 to return the correct bonus. If none of the   logical tests are true, the result should be 0. Use mixed references appropriately. Copy the function to the range   L8:L31.

 

Management decided to give an   equity salary adjustment for Representatives who earn less than $80,000. The   salary adjustment is 2% of the current salary if the conditions are met.
 

  In cell M7, nest an AND function within an IF function. If the job title is Representative   and the salary   is less than the minimum representative salary (cell C3), multiply the Salary   by 2% (cell C4). If both conditions are not met, return zero. Use a mixed   reference to cells C3 and C4. Copy the function from cell M7 to the range   M8:M31.

 

The last column of the Data   worksheet is to to calculate the future value of a retirement investment   based on the first employee’s salary, 5% APR, four years, at 3%.
 

  In cell N7, insert the FV function. Use the variables in the range N2:N4 in   the FV arguments. The rate is the APR divided by 12 months in a year, and the   number of payment periods is the number of years multiplied by 12 months in a   year. Use mixed cell references appropriately. Make sure the functions   returns a positive result. Copy the function to the range N8:N31.

 

You want to display the number   of employees who earned each bonus level in the range G2:G4.
 

  In cell G2, insert the COUNTIF function that counts the number of $3,000   bonuses in the range L7:L31 using mixed references. Use the bonus in cell F2   as the criteria. Copy the function to the range G3:G4 and preserve the border   in cell G4.

 

Next, you want to calculate the   total bonuses.
 

  In cell H2, insert the SUMIF function that calculates the total of the $3,000   bonuses in the range L7:L31 using mixed references. Use the bonus in cell F2   as the criteria. Copy the function to the range H3:H4 and preserve the border   in cell H4.

 

Next, you want to calculate the   average salary for representatives by city.
 

  In cell J2, insert the AVERAGEIFS function to calculate the average salary   (range E7:E31) for employees with the job title Representative who work in St. Paul. Use cell   I2 as the criteria for the City. Copy the function to the range J3:J4 and   preserve the border in cell J4.

 

Now you want to calculate the highest salary for representatives in   each city.
 

  In cell K2, insert the MAXIFS function to display the highest salary for   employees with the job title Representative who work in St. Paul. Use cell I2 as the criteria for the City. Copy   the function to the range K3:K4 and preserve the border in cell K4.

 

Now you want to calculate the   lowest salary for representatives in each city.
 

  In cell L2, insert the MINIFS function to display the highest salary for   employees with the job title Representative who work in St. Paul. Use cell I2 as the criteria   for the City. Copy the function to the range L3:L4 and preserve the border in   cell L4.

 

The Map worksheet contains the   average representative salary by state. You will create a map from this data.
 

  Select the range B1:C4 and insert a filled map. Cut the map chart and paste   it in cell D1. Set a 2.75" height and 4" width.

 

Now you will complete the map by   adding a title and formatting the data series.
 

  Change the map title to Average Rep Salary. Display the Format Data Series task pane, select   the option to display only regions with data, and show all labels. Close the   task pane.

 

The Days Hours worksheet   contains a list of starting and stopping days that employees took vacations.   You want to count the number of actual work days on vacation.
 

  In cell D4, insert the NETWORKDAYS function to calculate the number of   working days between the vacation start and end dates. Use 7/4/2024 (cell C1)   as a holiday. Copy the function to the range D5:D12.

 

The next section of the Days   Hours worksheet contains the start and stop times that employees worked on a   special project. You want to calculate the number of hours worked.
 

  In cell H4, insert the HOUR function to calculate hours difference between   the end and start times. Copy the function to the range H5:H12.

 

To complete the worksheet, you   will calculate the difference in minutes between the start and stop times on   the special project.
 

  In cell I4, insert the MINUTE function to calculate minutes difference   between the end and start times. Copy the function to the range I5:I12.

 

Save and close Exp22_Excel_Ch07_ML2_Employees.xlsx.   Exit Excel. Submit the file as directed.

Grader – Instructions Excel 2022 Project

Exp22_Excel_Ch07_ML2_Employees

Project Description:

You work for a clothing distributor that has locations in Iowa, Minnesota, and Wisconsin. You will use date and logical functions to complete the main employee data set, use database functions to calculate key summary statistics and create a map, and use financial functions to complete a loan amortization table.

Steps to Perform:

Step

Instructions

Points Possible

1

Start Excel. Download and open the file named Exp22_Excel_Ch07_ML2_Employees.xlsx. Grader has automatically added your last name to the beginning of the filename.

0

2

Column D contains the city each employee works in. You want to display the state. Make sure the Data worksheet is active. In cell G7, insert the SWITCH function to evaluate the city stored in cell D7. In this sequence, switch Des Moines for Iowa, St. Paul for Minnesota, and Milwaukee for Wisconsin. Use mixed references for the state names in the range A2:A4. Copy the function from cell G7 to the range G8:G31.

5

3

Column C contains the actual hire dates for the employees. You want to extract only the year in column H. In cell H7, insert the YEAR function to extract the year from the Hire Date in cell C7. Copy the function from cell H7 to the range H8:H31.

5

4

Next, you want to determine how many years each employee has worked for the company. In cell I7, insert the YEARFRAC function to calculate the years between the first employee's Hire Date and the last day of the year contained in cell C2. Use a mixed reference appropriately. Copy the function from cell I7 to the range I8:I31.

5

5

You want to determine what day of the week each employee was hired. In cell J7, insert the WEEKDAY function to display the day of the week for the first employee's Hire Date. Copy the function from cell J7 to the range J8:J31.

5

6

The values returned in the range J7:J31 are whole numbers. You want to display the result as the actual weekday names. Format the range J7:J31 as a custom number format dddd.

1

7

Employees are scheduled for a six-month review based on their hiring month. In cell K7, insert the EDATE function to identify the month that is six months from the first employee's Hire Date. Copy the function to the range K8:K31.

5

8

Your next task is to calculate the bonus for the first employee. If the employee's Performance Score is greater than or equal to 4.5, the bonus is $3,000. If the Performance Score is 4.0-4.9, the bonus is $2,000. If the Performance Score is 3.0-3.9, the bonus is $1,000. No bonus is given if the Performance Score is below 3.0. In cell L7, insert the IFS function to enter the bonus based on the Performance Score for the first employee. Use the respective scores stored in cells E2, E3, and E4 for the individual logical tests. Use the respective bonuses in cells F2, F3, and F4 to return the correct bonus. If none of the logical tests are true, the result should be 0. Use mixed references appropriately. Copy the function to the range L8:L31.

6

9

Management decided to give an equity salary adjustment for Representatives who earn less than $80,000. The salary adjustment is 2% of the current salary if the conditions are met. In cell M7, nest an AND function within an IF function. If the job title is Representative and the salary is less than the minimum representative salary (cell C3), multiply the Salary by 2% (cell C4). If both conditions are not met, return zero. Use a mixed reference to cells C3 and C4. Copy the function from cell M7 to the range M8:M31.

6

10

The last column of the Data worksheet is to to calculate the future value of a retirement investment based on the first employee’s salary, 5% APR, four years, at 3%. In cell N7, insert the FV function. Use the variables in the range N2:N4 in the FV arguments. The rate is the APR divided by 12 months in a year, and the number of payment periods is the number of years multiplied by 12 months in a year. Use mixed cell references appropriately. Make sure the functions returns a positive result. Copy the function to the range N8:N31.

6

11

You want to display the number of employees who earned each bonus level in the range G2:G4. In cell G2, insert the COUNTIF function that counts the number of $3,000 bonuses in the range L7:L31 using mixed references. Use the bonus in cell F2 as the criteria. Copy the function to the range G3:G4 and preserve the border in cell G4.

6

12

Next, you want to calculate the total bonuses. In cell H2, insert the SUMIF function that calculates the total of the $3,000 bonuses in the range L7:L31 using mixed references. Use the bonus in cell F2 as the criteria. Copy the function to the range H3:H4 and preserve the border in cell H4.

6

13

Next, you want to calculate the average salary for representatives by city. In cell J2, insert the AVERAGEIFS function to calculate the average salary (range E7:E31) for employees with the job title Representative who work in St. Paul. Use cell I2 as the criteria for the City. Copy the function to the range J3:J4 and preserve the border in cell J4.

6

14

Now you want to calculate the highest salary for representatives in each city. In cell K2, insert the MAXIFS function to display the highest salary for employees with the job title Representative who work in St. Paul. Use cell I2 as the criteria for the City. Copy the function to the range K3:K4 and preserve the border in cell K4.

6

15

Now you want to calculate the lowest salary for representatives in each city. In cell L2, insert the MINIFS function to display the highest salary for employees with the job title Representative who work in St. Paul. Use cell I2 as the criteria for the City. Copy the function to the range L3:L4 and preserve the border in cell L4.

6

16

The Map worksheet contains the average representative salary by state. You will create a map from this data. Select the range B1:C4 and insert a filled map. Cut the map chart and paste it in cell D1. Set a 2.75" height and 4" width.

5

17

Now you will complete the map by adding a title and formatting the data series. Change the map title to Average Rep Salary. Display the Format Data Series task pane, select the option to display only regions with data, and show all labels. Close the task pane.

5

18

The Days Hours worksheet contains a list of starting and stopping days that employees took vacations. You want to count the number of actual work days on vacation. In cell D4, insert the NETWORKDAYS function to calculate the number of working days between the vacation start and end dates. Use 7/4/2024 (cell C1) as a holiday. Copy the function to the range D5:D12.

6

19

The next section of the Days Hours worksheet contains the start and stop times that employees worked on a special project. You want to calculate the number of hours worked. In cell H4, insert the HOUR function to calculate hours difference between the end and start times. Copy the function to the range H5:H12.

5

20

To complete the worksheet, you will calculate the difference in minutes between the start and stop times on the special project. In cell I4, insert the MINUTE function to calculate minutes difference between the end and start times. Copy the function to the range I5:I12.

5

21

Save and close Exp22_Excel_Ch07_ML2_Employees.xlsx. Exit Excel. Submit the file as directed.

0

Total Points

100

Created On: 07/19/2022 1 Exp22_Excel_Ch07_ML2 – Employee Data 1.0

Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.

Do you need an answer to this or any other questions?

About Wridemy

We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.

How It Works

To make an Order you only need to click on “Order Now” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

Are there Discounts?

All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.

Hire a tutor today CLICK HERE to make your first order

Related Tags

Academic APA Writing College Course Discussion Management English Finance General Graduate History Information Justify Literature MLA