Bird
Raised Fist0
Excelspreadsheet~8 mins

Arithmetic operators in formulas in Excel - Dashboard Guide

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Dashboard Mode - Arithmetic operators in formulas
Goal

Calculate total cost, average cost, and cost difference using basic arithmetic operators in Excel formulas.

Sample Data
ItemQuantityUnit Price
Apples100.5
Bananas50.3
Cherries200.2
Dates71.0
Elderberries32.0
Dashboard Components
  • Total Cost per Item: Calculates cost by multiplying Quantity and Unit Price.
    Formula example in cell D2: =B2*C2
    Output for Apples: 5.0
  • Grand Total Cost: Sum of all total costs.
    Formula in D7: =SUM(D2:D6)
    Output: 23.5
  • Average Unit Price: Average of unit prices.
    Formula in C7: =AVERAGE(C2:C6)
    Output: 0.6
  • Price Difference: Difference between highest and lowest unit price.
    Formula in C8: =MAX(C2:C6)-MIN(C2:C6)
    Output: 1.8
Dashboard Layout
+----------------------+---------------------+
| Total Cost per Item   | Grand Total Cost    |
| (Table with formula)  | (Single cell sum)   |
+----------------------+---------------------+
| Average Unit Price    | Price Difference    |
| (Single cell avg)     | (Single cell diff)  |
+----------------------+---------------------+
Interactivity

Adding a filter for Item name will update the Total Cost per Item table and the Grand Total Cost, Average Unit Price, and Price Difference calculations to reflect only the selected items.

Self Check

If you filter to show only "Apples" and "Bananas", what is the new Grand Total Cost?

Answer: Apples total cost = 10 * 0.5 = 5.0, Bananas total cost = 5 * 0.3 = 1.5, so Grand Total Cost = 5.0 + 1.5 = 6.5

Key Result
Dashboard showing total cost per item, grand total, average unit price, and price difference using arithmetic operators.

Practice

(1/5)
1. Which arithmetic operator in Excel is used for multiplication in a formula like =A1 * B1?
easy
A. + (plus)
B. * (asterisk)
C. - (minus)
D. / (slash)

Solution

  1. Step 1: Identify the multiplication operator

    In Excel formulas, the asterisk (*) is used to multiply values.
  2. Step 2: Confirm the operator in the example

    The formula =A1 * B1 uses the asterisk to multiply the values in cells A1 and B1.
  3. Final Answer:

    * (asterisk) -> Option B
  4. Quick Check:

    Multiplication = * [OK]
Hint: Remember * means multiply in Excel formulas [OK]
Common Mistakes:
  • Confusing * with + for addition
  • Using x instead of *
  • Using / for multiplication
2. Which of the following is the correct formula to add values in cells A1 and B1 in Excel?
easy
A. =A1 + B1
B. =A1 - B1
C. =A1 * B1
D. =A1 / B1

Solution

  1. Step 1: Identify the addition operator

    The plus sign (+) is used to add numbers in Excel formulas.
  2. Step 2: Check the formula syntax

    The formula =A1 + B1 correctly adds the values in cells A1 and B1.
  3. Final Answer:

    =A1 + B1 -> Option A
  4. Quick Check:

    Addition = + [OK]
Hint: Use + to add numbers in Excel formulas [OK]
Common Mistakes:
  • Using - instead of +
  • Forgetting the = sign
  • Using * for addition
3. What is the result of the formula =10 + 5 * 2 in Excel?
medium
A. 25
B. 30
C. 15
D. 20

Solution

  1. Step 1: Apply order of operations

    Excel calculates multiplication before addition, so 5 * 2 = 10.
  2. Step 2: Add the results

    Then add 10 + 10 = 20.
  3. Final Answer:

    20 -> Option D
  4. Quick Check:

    10 + (5 * 2) = 20 [OK]
Hint: Multiply before adding unless parentheses change order [OK]
Common Mistakes:
  • Adding first then multiplying
  • Ignoring operator precedence
  • Confusing * with +
4. The formula =A1 + B1 * returns an error. What is the problem?
medium
A. Formula should start with a single quote
B. Using + instead of -
C. Missing value after the * operator
D. Parentheses are required around A1 and B1

Solution

  1. Step 1: Check formula completeness

    The formula ends with an operator * but has no value after it, which is invalid.
  2. Step 2: Understand Excel syntax rules

    Every operator must have values on both sides; missing value causes an error.
  3. Final Answer:

    Missing value after the * operator -> Option C
  4. Quick Check:

    Operators need values on both sides [OK]
Hint: Ensure every operator has values before and after [OK]
Common Mistakes:
  • Leaving operator at end
  • Forgetting to complete formula
  • Adding unnecessary parentheses
5. You want to calculate the total price with tax in Excel. The price is in cell A2, and tax rate (as decimal) is in B2. Which formula correctly calculates price plus tax?
hard
A. =A2 + B2 * A2
B. =(A2 + B2) * A2
C. =A2 + B2
D. =A2 + B2 + A2

Solution

  1. Step 1: Understand the calculation

    Total price with tax = price + (price x tax rate).
  2. Step 2: Match formula to calculation

    Formula =A2 + B2 * A2 correctly adds price plus tax amount (B2 * A2).
  3. Final Answer:

    =A2 + B2 * A2 -> Option A
  4. Quick Check:

    Price + (TaxRate x Price) = Total [OK]
Hint: Multiply tax rate by price, then add price [OK]
Common Mistakes:
  • Adding tax rate directly
  • Multiplying sum incorrectly
  • Using wrong operator order