0
0
Power BIbi_tool~10 mins

Waterfall charts in Power BI - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows categories and their amounts for a waterfall chart. 'Start' is the initial value, followed by positive and negative changes, and 'End' is the final total to calculate.

CellValue
A1Category
B1Amount
A2Start
B21000
A3Sales
B3300
A4Returns
B4-100
A5Expenses
B5-200
A6End
B61000
Formula Trace
End = Start + Sales + Returns + Expenses
Step 1: Start
Step 2: Start + Sales
Step 3: 1300 + Returns
Step 4: 1200 + Expenses
Step 5: End
Cell Reference Map
    A       B
  +-------+-------+
1 |Category|Amount |
  +-------+-------+
2 | Start  | 1000  | <-- Start value
  +-------+-------+
3 | Sales  |  300  | <-- Sales increase
  +-------+-------+
4 | Returns| -100  | <-- Returns decrease
  +-------+-------+
5 |Expenses| -200  | <-- Expenses decrease
  +-------+-------+
6 | End    | 1000  | <-- End to calculate
  +-------+-------+
Cells B2 to B5 provide the amounts for the waterfall calculation. B6 is where the final total (End) is calculated by summing these values.
Result
    A       B
  +-------+-------+
1 |Category|Amount |
  +-------+-------+
2 | Start  | 1000  |
  +-------+-------+
3 | Sales  |  300  |
  +-------+-------+
4 | Returns| -100  |
  +-------+-------+
5 |Expenses| -200  |
  +-------+-------+
6 | End    | 1000  |
  +-------+-------+
The final result shows the End value as 1000 in cell B6, which is the sum of Start plus all changes (Sales, Returns, Expenses). This value is used in the waterfall chart to show the final total after all increases and decreases.
Sheet Trace Quiz - 3 Questions
Test your understanding
What is the value of the 'End' after adding Sales to Start?
A300
B1000
C1300
D1200
Key Result
Waterfall chart totals are calculated by starting with an initial value and adding or subtracting each category's amount step by step.