Complete the formula to calculate the total price by multiplying quantity and unit price.
=A2[1]B2The multiplication operator (*) is used to calculate total price by multiplying quantity (A2) and unit price (B2).
Complete the formula to calculate the discount amount by multiplying price and discount rate.
=C3[1]D3Multiplying price (C3) by discount rate (D3) gives the discount amount.
Fix the error in the formula to calculate net price after discount.
=E4[1]F4Net price is price (E4) minus discount amount (F4), so use the subtraction operator '-'.
Fill both blanks to calculate total cost including tax. Multiply net price by (1 plus tax rate).
=G5[1](1[2]H5)
To add tax, multiply net price (G5) by (1 + tax rate (H5)). Use '*' for multiplication and '+' to add 1 and tax rate.
Fill all four blanks to calculate final price with discount and tax: multiply quantity by unit price, subtract discount, then multiply by (1 plus tax rate).
=((A6[1]B6)[2]C6)[3](1[4]D6)
First multiply quantity (A6) by unit price (B6) using '*'. Then subtract discount (C6) with '-'. Finally multiply by (1 + tax rate (D6)) using '*' and '+'.