+3 votes
in Class 9 by kratos

Write command for the operations (i) to (iii) based on the spreadsheet below:

  1. To calculate the Amount as Unit Price*Qty for each item in Column F.

  2. To calculate the Rebate as 7% of Amount if Type is consumable, else calculate Rebate as 11% of Amount in Column G.

  3. To calculate total Rebate across all items in cell G6.

1 Answer

+4 votes
by kratos
 
Best answer
  1. At cell F2, type =D2*E2 and then copy this formula using mouse Fill handle onto range F3: F5.

  2. At cell G2, type =IF(C2=”Consumable”, F20.07, F20.11) and then copy this formula using mouse Fill handle onto range G3: G5.

  3. At cell G6, type =SUM(G2: G5).

...