0
0
Excelspreadsheet~10 mins

Why PivotTables summarize large datasets in Excel - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a PivotTable that summarizes data by category.

Excel
=GETPIVOTDATA("[1]", A1)
Drag options to blanks, or click blank then click option'
ASum
BCount
CAverage
DMax
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Count instead of Sum, which counts items but does not add values.
2fill in blank
medium

Complete the formula to count the number of sales entries in a PivotTable.

Excel
=GETPIVOTDATA("[1]", A1)
Drag options to blanks, or click blank then click option'
ASum
BAverage
CCount
DMax
Attempts:
3 left
💡 Hint
Common Mistakes
Using Sum instead of Count, which adds values rather than counting entries.
3fill in blank
hard

Fix the error in the PivotTable formula to calculate the average sales.

Excel
=GETPIVOTDATA("[1]", A1)
Drag options to blanks, or click blank then click option'
ASum
BAverage
CCount
DMin
Attempts:
3 left
💡 Hint
Common Mistakes
Using Sum or Count instead of Average, which changes the meaning of the result.
4fill in blank
hard

Fill both blanks to create a PivotTable formula that finds the maximum sales value.

Excel
=GETPIVOTDATA("[1]", A1, "Sales", "[2]")
Drag options to blanks, or click blank then click option'
AMax
BMin
CRegion
DCategory
Attempts:
3 left
💡 Hint
Common Mistakes
Using Min instead of Max, which finds the smallest value.
Using a value instead of a field name in the second blank.
5fill in blank
hard

Fill all three blanks to create a PivotTable formula that sums sales filtered by category and region.

Excel
=GETPIVOTDATA("[1]", A1, "[2]", "East", "[3]", "Electronics")
Drag options to blanks, or click blank then click option'
ASum
BRegion
CCategory
DCount
Attempts:
3 left
💡 Hint
Common Mistakes
Using Count instead of Sum for the summary function.
Swapping Region and Category field names.