Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

On the EmployeeAnalysis worksheet, in cell J 2 3 , enter a MATCH function that will return the row number of whichever category is selected

On the EmployeeAnalysis worksheet, in cell J23, enter a MATCH function that will return the row number of whichever category is selected in cell H20. Use the fill handle to copy the formula down through J27.
=MATCH($H$20,$F$5:$F$9,0)
In cell K23, enter a MATCH function that will return the column number of the EmployeeID in cell F23. Use the fill handle to copy the formula down through K27.
=MATCH(F23,$G$4:$K$4,0)
In cell H23, enter an INDEX function, using the range G5:K9 as the array, and referencing the values in J23 and K23 for the row and column numbers. Use the fill handle to copy the formula down through H27.
=INDEX($G$5:$K$9,J23,K23)
On the CustomerAnalysis worksheet, in cell B20, enter an INDEX function that will retrieve the CustomerID of the customer with the highest TotalSales from the array A4:G16. Use the fill handle to copy the formula down through B23.
=INDEX($A$4:$G$16,MATCH(MAX($E$4:$E$16),$E$4:$E$16,0),MATCH(A20,$A$3: $G$3,0))
On the ShippingCosts worksheet, create a Priority named range for cells A5:F10 and then create an Express named range for cells A15:F20.
In cell I7, enter a VLOOKUP function to retrieve the correct shipping costs based on the weight and zone. Use the INDIRECT function for the table_array so that the customer can choose Express or Priority shipping. Use Match function to return the column number for the VLOOKUP function.
Change the shipping method from Priority to Express and change the zone number of the destination from Zone 2 to Zone 5 to ensure the correct shipping cost is retrieved.
=VLOOKUP(I5,Priority,3,TRUE )=VLOOKUP(I5,Priority,MATCH(I6,A4:F4,0),TRUE )
=VLOOKUP(I5,INDIRECT(I4),MATCH(I6,A4:F4,0),TRUE)
On the Transactions worksheet, incorporate the IFERROR function in cells G10, H10, and J10 so that a blank value ("") or 0 is returned for the value_if_error. Use the fill handle to copy each formula down through row 30.
=IFERROR(IF(NOT(VLOOKUP(B10,Product_List,3,FALSE)="Accessories"),"Yes"," No"),"")=IFERROR(VLOOKUP(B10,Product_List,4,FALSE)*D10,0)=IFERROR(HLOOKUP(E10,$B$4:$D$6,2,FALSE),"")

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Learning MySQL Get A Handle On Your Data

Authors: Seyed M M Tahaghoghi

1st Edition

0596529465, 9780596529468

More Books

Students also viewed these Databases questions