0
0
Excelspreadsheet~20 mins

Waterfall charts in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Waterfall Chart Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate the intermediate subtotal for a waterfall chart
You have a list of monthly revenue changes in cells B2:B6. The starting revenue is in cell B1. Which formula in cell B7 correctly calculates the subtotal after all changes?
Excel
Starting revenue in B1: 1000
Changes in B2:B6: 200, -150, 300, -100, 50
Formula in B7 to calculate subtotal:
A=B1 - SUM(B2:B6)
B=SUM(B1:B6)
C=B1 + AVERAGE(B2:B6)
D=B1 + SUM(B2:B6)
Attempts:
2 left
💡 Hint
Add all the changes to the starting revenue to get the subtotal.
Function Choice
intermediate
2:00remaining
Choose the correct Excel function to calculate cumulative totals for a waterfall chart
You want to create a column that shows the running total of revenue changes for a waterfall chart. Which Excel function is best to use in cell C2 and drag down?
Excel
Starting revenue in B1: 1000
Changes in B2:B6: 200, -150, 300, -100, 50
Running total formula in C2:
A=SUM($B$1:B2)
B=SUM(B$1:B2)
C=SUM(B$1:B$2)
D=SUM(B1:B2)
Attempts:
2 left
💡 Hint
Use absolute reference for the start cell and relative for the end cell.
🎯 Scenario
advanced
2:00remaining
Identify the correct data layout for a waterfall chart in Excel
You want to create a waterfall chart showing starting value, increases, decreases, and ending value. Which data layout is correct for Excel to build the chart?
Excel
Data options:
A) Column A: Labels (Start, Increase1, Decrease1, End)
    Column B: Values (1000, 200, -150, 1050)
B) Column A: Labels
    Column B: Positive values only
    Column C: Negative values only
C) Column A: Labels
    Column B: Cumulative totals
D) Column A: Labels
    Column B: Values with all positive numbers
ALabels in one column and values (positive and negative) in the next column
BSeparate columns for positive and negative values with labels in first column
CLabels with cumulative totals only in the next column
DLabels with only positive values in the next column
Attempts:
2 left
💡 Hint
Waterfall charts need both positive and negative values in one column to show increases and decreases.
data_analysis
advanced
2:00remaining
Determine the final value displayed in a waterfall chart
Given the starting value 500 in cell A1 and changes in cells A2:A5 as 100, -50, 200, -150, what is the final value shown at the end of the waterfall chart?
Excel
Starting value: 500
Changes: 100, -50, 200, -150
A550
B500
C600
D700
Attempts:
2 left
💡 Hint
Add all changes to the starting value.
🧠 Conceptual
expert
3:00remaining
Why use helper columns in waterfall charts?
In Excel waterfall charts, why do we often use helper columns for 'Increase', 'Decrease', and 'Subtotal' instead of a single column with positive and negative values?
ATo make the chart look colorful by using multiple columns
BTo separate positive and negative values for Excel to correctly display the bars as increases or decreases
CBecause Excel does not support negative numbers in charts
DTo avoid using formulas and make data entry easier
Attempts:
2 left
💡 Hint
Think about how Excel knows which bars go up or down in a waterfall chart.