Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2 7 The spreadsheet contains codes (BA, DA, SA) to represent agent roles (Buyer's Agent, Dual Agent, Seller's Agent). You want to switch the codes
2 7 The spreadsheet contains codes (BA, DA, SA) to represent agent roles (Buyer's Agent, Dual Agent, Seller's Agent). You want to switch the codes for the actual descriptions. In cell E12 of the Details sheet, insert the SWITCH function to evaluate the agent code in cell D12. Include mixed cell references to the codes and roles in the range J2:K4 for the values and results arguments. use all cell references in the function. Copy the function to the range E13:E39. Hint: Formula is =SWITCH(Agent Type, BA, Buyer's Agent, DA, Dual Agency, SA, Seller's Agent) 3 Now you want to calculate the number of days between the list date and sale date. 7 In cell J12, insert the DAYS function to calculate the number of days between the Listing Date and the Sale Date. Copy the function to the range J13:339. Hint: Formula is =DAYS(Sale Date, Listing Date) 4 You want to calculate agent commissions based on their role. 7 In cell K12, insert the IFS function to calculate the agent's commission based on the agent code and the applicable rates in the range L2:L4. Use relative and mixed references correctly. Copy the function to the range K13:K39. Hint: Formula is =IFS(Agent Type=BA, Sold Price* 2.75%, Agent Type=DA, Sold Price*5.5%, Agent Type=SA, Sold Price*3.25%) 5 7 You want to calculate a bonus if the sold price was at least equal to the listing price, and if the house sold within 30 days after being listed. In cell L12, insert an IF function with a nested AND function to calculate a bonus. The AND function should ensure both conditions are met: Sold Price divided by the Listing Price is greater than or equal to 100% (cell L7) and the Days on Market are less than or equal to 30 (cell L8). If both conditions are met, the bonus is $1,000 (cell L9). Otherwise, the bonus is $0. Use mixed cell references to the input values in the range L7:L9. Copy the function to the range L12:L39. Hint: Formula is =IF(AND(Sold Price / List Price >= Percent of List, Days on Market = Percent of List, Days on Market
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started