Bird
Raised Fist0
Excelspreadsheet~20 mins

Arithmetic operators in formulas in Excel - Practice Problems & Coding Challenges

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
Challenge - 5 Problems
🎖️
Arithmetic Formula Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate the result of a mixed arithmetic formula
What is the value in cell A1 if the formula =5 + 3 * 2 - 4 / 2 is entered?
A11
B10
C9
D8
Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication and division happen before addition and subtraction.
Function Choice
intermediate
2:00remaining
Choose the correct formula to calculate total cost
You have quantity in cell B2 and price per item in C2. Which formula correctly calculates total cost with a 10% tax added?
A=B2 * C2 * 1.10
B=B2 * C2 + 10%
C=B2 + C2 * 1.10
D=B2 * (C2 + 10%)
Attempts:
2 left
💡 Hint
Tax is 10% of the total price, so multiply total by 1.10.
📊 Formula Result
advanced
2:00remaining
Evaluate a formula with parentheses and mixed operators
What is the result of the formula = (8 + 2) * (5 - 3) / 2?
A20
B10
C5
D15
Attempts:
2 left
💡 Hint
Calculate inside parentheses first, then multiply and divide from left to right.
🎯 Scenario
advanced
2:00remaining
Fix the formula to correctly calculate average cost per item
You want to calculate average cost per item. You have total cost in A1 and number of items in B1. Which formula correctly calculates average cost?
A=A1 + B1
B=B1 / A1
C=A1 * B1
D=A1 / B1
Attempts:
2 left
💡 Hint
Average cost is total cost divided by number of items.
data_analysis
expert
3:00remaining
Determine the number of items with positive profit
Column A has costs, column B has revenues. Which formula counts how many items have revenue greater than cost?
A=SUMPRODUCT(--(B1:B10 > A1:A10))
B=COUNTIF(B:B, ">" & A:A)
C=COUNTIF(A:A, ">" & B:B)
D=SUM(B1:B10 > A1:A10)
Attempts:
2 left
💡 Hint
Use SUMPRODUCT with a logical test to compare arrays element-wise.

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