Complete the formula to calculate the net change between two values in Excel.
=B2[1]C2The net change is calculated by subtracting the previous value from the current value, so the correct operator is -.
Complete the formula to calculate the cumulative total in a waterfall chart in Excel.
=SUM($B$2:B[1])
The formula sums from the fixed start cell B2 to the current row cell B4 to get the cumulative total.
Fix the error in the formula that calculates the starting point for the next bar in a waterfall chart.
=IF(B3>0, [1] + B3, [1])
The formula should add the current value B3 to the previous cumulative total B2 to get the next starting point.
Fill both blanks to create a formula that sets the base for positive and negative changes in a waterfall chart.
=IF(B4>0, [1], [2])
If the change is positive, the base is the previous total B3. If negative, the base is zero to start the drop from the baseline.
Fill all three blanks to create a formula that calculates the height of bars in a waterfall chart, distinguishing increases and decreases.
=IF(B5>0, [1] - [2], [3] - B5)
For positive changes, subtract the previous total B4 from the current value B5. For negative changes, subtract the change B5 from the previous total B3.