0
0
Excelspreadsheet~20 mins

Treemap and sunburst in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Treemap and Sunburst Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate total sales for a category in a Treemap data set
You have a table with product categories and their sales amounts. Which formula correctly sums sales for the category "Electronics" to prepare data for a Treemap chart?
Excel
Category | Sales
Electronics | 1200
Furniture | 800
Electronics | 1500
Clothing | 600
Furniture | 700
A=SUMIF(A2:A6, "Electronics", B2:B6)
B=SUM(A2:A6="Electronics", B2:B6)
C=COUNTIF(A2:A6, "Electronics")
D=SUMIFS(B2:B6, A2:A6, "Furniture")
Attempts:
2 left
💡 Hint
Use a function that sums values based on a condition matching the category name.
Function Choice
intermediate
2:00remaining
Choose the best function to prepare data for a Sunburst chart
You want to create a Sunburst chart showing sales by Region and then by Country. Which function helps you summarize sales by both Region and Country?
Excel
Region | Country | Sales
North America | USA | 2000
North America | Canada | 1500
Europe | Germany | 1800
Europe | France | 1600
AVLOOKUP
BSUMIFS
CCOUNTIF
DLEFT
Attempts:
2 left
💡 Hint
You need to sum sales based on multiple criteria (Region and Country).
🎯 Scenario
advanced
2:00remaining
Identify the cause of incorrect Sunburst chart levels
You created a Sunburst chart with data showing sales by Department, Category, and Subcategory. The chart shows missing segments for some Subcategories. What is the most likely reason?
AThe data table has duplicate Department names
BThe Sales column contains text instead of numbers
CSome Subcategory cells are blank or contain errors
DThe chart type was set to Treemap instead of Sunburst
Attempts:
2 left
💡 Hint
Sunburst charts require complete hierarchical data without blanks in levels.
data_analysis
advanced
2:00remaining
Determine the number of segments in a Treemap chart
Given this data for a Treemap chart showing sales by Region and Product, how many segments will the Treemap display?
Excel
Region | Product | Sales
East | Chair | 500
East | Table | 700
West | Chair | 600
West | Desk | 400
West | Table | 300
A4 segments
B3 segments
C2 segments
D5 segments
Attempts:
2 left
💡 Hint
Count unique combinations of Region and Product for segments.
🧠 Conceptual
expert
2:00remaining
Understand the difference between Treemap and Sunburst charts
Which statement best describes the key difference between Treemap and Sunburst charts in Excel?
ATreemap uses nested rectangles to show hierarchy; Sunburst uses concentric rings
BTreemap requires numeric data; Sunburst only works with text data
CTreemap shows data over time; Sunburst shows data by location
DTreemap is for flat data; Sunburst cannot show hierarchical data
Attempts:
2 left
💡 Hint
Think about how each chart visually represents hierarchical data.