Fill This Form To Receive Instant Help
Homework answers / question archive / Q1 If a consultant generates sales above $10,000 for both the "JanuaryJune" and "July and December" periods then the commission for the total amount should be calculated using the "Commission rates " table (please use IF, SUM, VLOOKUP, AND Define the name range E16 to F20 as "Commission rates" * and use this in your VLOOKUP Q 2 Consultants that started in the year 2020 are entitled to bonus commission if they generate over $75,000 in sales in both periods
Q1 If a consultant generates sales above $10,000 for both the "JanuaryJune" and "July and December" periods then the commission for the total amount should be calculated using the "Commission rates " table
(please use IF, SUM, VLOOKUP, AND Define the name range E16 to F20 as "Commission rates" * and use this in your VLOOKUP
Q 2 Consultants that started in the year 2020 are entitled to bonus commission if they generate over $75,000 in sales in both periods. If an employee started in 2020, and both periods "January-June sales" and "July December sales" are greater than $75,000 then then the cell should display "First name Last Name receives bonus commission", if the conditions are not
(Please use IF, CONCAT, AND, YEAR (or DATEVALUE)
Q 3 Create the email address in I5-I10 using the initial from the first name, plus the full last name. Add a "." between the initial and last name. Add the "@" symbol after the last name. Finally use the Consultant details table to obtain the email domain name.
(please use VLOOKUP, Left, Right, CONCAT Define the name range E25 to F30 as “Consultant details”*** and use this in your VLOOKUP)Bonus commission Email address First Name Last Name Date Startec Consultant 10 January-June sale July-December sale Commission (S) David Silver 2/09/14 XXDASIL $ 40,000.00 $ 90,000.00 Harriette Brown 11/08/15 XXHABRO $ 100,000.00 $ 90,000.00 Hugo Chevi 11/11/19 XXHUCHE $ 8,000.00 $ 33,000.00 Sally Chan 14/06/20 XOXSACHA $ 85,000.00 $ 76,000.00 Tyrion Smith 1/04/20 XXTYSMI $ 60,000.00 $ 95,000.00 Jamie Brown 1/07/17 XXIABRO $ 90,000.00 $ 110,000.00 Commission rates table Sales threshold Commission $ 10,000.00 $ 51,000.00 $ 101,000.00 $ 150,000.00 $ 200,000.00 2% 4% 6% 10% Consultant details table Consultant ID Email domain DASIL bgconsulting.com HABRO flywizards.com HUCHE acesolutions.com SACHA formation.com TYSMI smothers.com JABRO tbit.com
The formulas used are given in following tables:
First Name | Last Name | Date started | Consultant ID | January-June sale | July-December Sale | Commission ($) | Bonus Commission | Email address |
David | Silver | 43710 | XXDASIL | 40000 | 90000 | =SUM(E6:F6)*VLOOKUP(MIN(E6:F6),$E$16:$F$20,2,TRUE) | =IF(YEAR(C6)=2020,IF(E6>75000,IF(F6>75000,CONCATENATE(A6," ",B6," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A6,1),B6,"@",VLOOKUP(RIGHT(D6,5),E25:F30,2,FALSE)) |
Harriette | Brown | 42227 | XXHABRO | 100000 | 90000 | =SUM(E7:F7)*VLOOKUP(MIN(E7:F7),$E$16:$F$20,2,TRUE) | =IF(YEAR(C7)=2020,IF(E7>75000,IF(F7>75000,CONCATENATE(A7," ",B7," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A7,1),B7,"@",VLOOKUP(RIGHT(D7,5),E26:F31,2,FALSE)) |
Hugo | Chevl | 43780 | XXHUCHE | 8000 | 33000 | =SUM(E8:F8)*VLOOKUP(MIN(E8:F8),$E$16:$F$20,2,TRUE) | =IF(YEAR(C8)=2020,IF(E8>75000,IF(F8>75000,CONCATENATE(A8," ",B8," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A8,1),B8,"@",VLOOKUP(RIGHT(D8,5),E27:F32,2,FALSE)) |
Sally | Chan | 43996 | XXSACHA | 85000 | 76000 | =SUM(E9:F9)*VLOOKUP(MIN(E9:F9),$E$16:$F$20,2,TRUE) | =IF(YEAR(C9)=2020,IF(E9>75000,IF(F9>75000,CONCATENATE(A9," ",B9," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A9,1),B9,"@",VLOOKUP(RIGHT(D9,5),E28:F33,2,FALSE)) |
Tyrion | Smith | 43922 | XXTYSMI | 60000 | 95000 | =SUM(E10:F10)*VLOOKUP(MIN(E10:F10),$E$16:$F$20,2,TRUE) | =IF(YEAR(C10)=2020,IF(E10>75000,IF(F10>75000,CONCATENATE(A10," ",B10," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A10,1),B10,"@",VLOOKUP(RIGHT(D10,5),E29:F34,2,FALSE)) |
Jamie | Brown | 42917 | XXJABRO | 90000 | 110000 | =SUM(E11:F11)*VLOOKUP(MIN(E11:F11),$E$16:$F$20,2,TRUE) | =IF(YEAR(C11)=2020,IF(E11>75000,IF(F11>75000,CONCATENATE(A11," ",B11," ","receives bonus commission"),""),""),"") | =CONCATENATE(LEFT(A11,1),B11,"@",VLOOKUP(RIGHT(D11,5),E30:F35,2,FALSE)) |
Please note that in the question, there is no answer as to what happens if a consultant earns less than $10,000 in any period and that is why in the case of consultant Hugo Chevyl, the commission is shown as #N/A.
please see the attached file for the complet solution.