0
0
Excelspreadsheet~20 mins

Value fields and aggregation in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Value Fields & Aggregation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate total sales using SUM function

You have a list of sales amounts in cells B2:B10. Which formula correctly calculates the total sales?

A=SUM(B2:B10)
B=SUM(B2+B10)
C=SUM(B2:B10, B11)
D=SUM(B2;B10)
Attempts:
2 left
💡 Hint

Use the function that adds all numbers in a range.

Function Choice
intermediate
2:00remaining
Choose the correct aggregation function for average

You want to find the average value of numbers in cells C2:C15. Which function should you use?

ASUM(C2:C15)
BAVERAGE(C2:C15)
CMAX(C2:C15)
DCOUNT(C2:C15)
Attempts:
2 left
💡 Hint

Think about which function calculates the mean value.

🎯 Scenario
advanced
2:30remaining
Summing values with conditions using SUMIF

You have sales data in column D and product categories in column C. You want to sum sales only for the category "Electronics". Which formula will do this?

A=SUMIF("Electronics", C2:C20, D2:D20)
B=SUMIF(D2:D20, "Electronics", C2:C20)
C=SUMIF(C2:C20, D2:D20, "Electronics")
D=SUMIF(C2:C20, "Electronics", D2:D20)
Attempts:
2 left
💡 Hint

Remember the order: range to check, condition, then sum range.

data_analysis
advanced
2:30remaining
Finding the maximum value ignoring blanks

Column E contains sales numbers but some cells are blank. Which formula correctly finds the maximum sales value ignoring blanks?

A=MAX(IF(ISNUMBER(E2:E30), E2:E30))
B=MAX(IF(E2:E30<>"", E2:E30))
C=MAX(E2:E30)
D=MAX(E2:E30, "")
Attempts:
2 left
💡 Hint

Use a formula that checks if cells contain numbers before finding max.

🧠 Conceptual
expert
2:00remaining
Understanding aggregation behavior with pivot tables

In a pivot table, you add a value field showing sales amounts. By default, what aggregation does Excel apply to this value field?

ACount of sales amounts
BAverage of sales amounts
CSum of sales amounts
DMaximum of sales amounts
Attempts:
2 left
💡 Hint

Think about what Excel usually does with numbers in pivot tables.