0
0
Excelspreadsheet~20 mins

Calculated fields in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Calculated Fields Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate Total Sales with Tax
You have a sales amount in cell A2 and a tax rate in cell B2 (as a decimal). Which formula correctly calculates the total sales including tax in cell C2?
A=A2 + B2
B=A2 * B2
C=A2 / (1 - B2)
D=A2 * (1 + B2)
Attempts:
2 left
💡 Hint

Think about adding the tax percentage to the original amount.

Function Choice
intermediate
2:00remaining
Choose the Correct Formula for Average Price
You have quantities sold in column A and total sales in column B. Which formula calculates the average price per unit sold in cell C2?
A=B2 / A2
B=AVERAGE(A2,B2)
C=SUM(A2:B2)
D=A2 / B2
Attempts:
2 left
💡 Hint

Average price is total sales divided by quantity sold.

🎯 Scenario
advanced
2:30remaining
Calculate Commission Based on Sales Threshold
You want to calculate commission in cell C2 based on sales in A2. The commission is 5% if sales are up to $1000, and 10% for any amount above $1000. Which formula correctly calculates the commission?
A=IF(A2>1000, A2*0.10, A2*0.05)
B=IF(A2<=1000, A2*0.05, (A2-1000)*0.10 + 1000*0.05)
C=A2*0.05 + IF(A2>1000, A2*0.10, 0)
D=IF(A2<=1000, A2*0.10, (A2-1000)*0.05 + 1000*0.10)
Attempts:
2 left
💡 Hint

Calculate commission separately for amounts up to and above $1000.

📊 Formula Result
advanced
2:30remaining
Calculate Weighted Average Price
You have quantities in A2:A4 and prices in B2:B4. Which formula in cell C2 calculates the weighted average price?
A=SUM(A2:A4) / SUM(B2:B4)
B=AVERAGE(B2:B4)
C=SUMPRODUCT(A2:A4, B2:B4) / SUM(A2:A4)
D=SUMPRODUCT(B2:B4) / SUM(A2:A4)
Attempts:
2 left
💡 Hint

Weighted average multiplies each price by its quantity, sums those, then divides by total quantity.

data_analysis
expert
3:00remaining
Identify the Correct Formula for Dynamic Profit Margin
You have sales in A2, cost in B2, and want to calculate profit margin percentage in C2. The profit margin is (Sales - Cost) divided by Sales, shown as a percentage. Which formula correctly calculates this with error handling for zero sales?
A=IFERROR((A2-B2)/A2, 0)
B=IF(A2=0, 0, (A2-B2)/A2)
C=(A2-B2)/A2
D=IF(A2=0, "Error", (A2-B2)/A2)
Attempts:
2 left
💡 Hint

Use a formula that avoids division errors and returns 0 if sales are zero.