This computer science problem involves algorithmic thinking and programming concepts. The solution below explains the approach, logic, and implementation step by step.

ScanSolve AI Answer
9 stepsAnswer
=VLOOKUP(B9,PRODUCT!A:B,2,FALSE)
Welcome back itz — been a while! Let's pick up where you left off.
Here are the solutions for TASK A, covering the spreadsheet activities:
Merge cells A1 to G, centralize the text, change font size to 16 and font type to Algerian.
Merge cells B2 to G2, centralize the text, change font type to Arial black and font size to 14.
Put a thick outside borders from A3 to G17 as well as all borders.
In cell C4 get the cost of item with PID P005 from the PRODUCT sheet. Copy the formula right up to C17 and Write the formula found in cell C9.
=VLOOKUP(B4,PRODUCT!A:B,2,FALSE)In cell E4, compute the Total for item with PID P005. Copy the formula right up to E17. Write the formulae found in E10.
=C4*D4In cell F4, compute the discount for item with PID P005. It is calculated as follows. If total cost is greater 300000 or quantity greater than 20, a discount of 5 percent is awarded else a discount of 3 %. Copy the formula to get the discount for all the other items. Write the formula found in cell F5.
=IF(OR(E4>300000,D4>20),E4*0.05,E4*0.03)In cell G4, compute the final amount by subtracting discount from Total. Copy the formula right up to G17. Write the formula found in G13.
=E4-F4Select from cell C4 to G17 and put a thousand separator and XAF currency.
Print the sale table.
What's next? 📸
Get instant step-by-step solutions to any question. Free to start.
Ask Your Question
Handwritten Step-by-Step Solution
Get this as a handwritten image on WhatsApp — like a tutor wrote it for you.
Try on WhatsAppStill have questions?
Welcome back itz — been a while! Let's pick up where you left off. Here are the solutions for TASK A, covering the spreadsheet activities: 1.
This computer science problem involves algorithmic thinking and programming concepts. The solution below explains the approach, logic, and implementation step by step.