Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
The table below shows a summary of the data I'm working with. Each row represents a different production forecast for a given year. If I select a Year in the slicer, I want to display a waterfall chart to show the difference between production forecasts for that selected year starting with the first forecast and ending with the last (or Actuals for the current or past years).
The standard waterfall chart works but it gives you subtotals in between each value that I don't want and I can't figure out how to make them go away. I'm assuming to make it work I'll need a measure to find the incremental differences between forecasts. If I'm wrong feel free to point me in the right direction. I have a table where the forecasts are index and the volumes table isn't complicated (see below) but I'm struggling with the DAX.
Product | Production Date | Volume | Forecast |
Product1 | 1/1/2018 | 200 | 2018 PB |
Product2 | 10/1/2018 | 300 | 2018 RBU1 |
Product3 | 1/10/2019 | 5000 | 2019 MTP |
Product4 | 4/1/2021 | 675 | Actual |
Product5 | 6/1/2022 | 238 | 2020 LRP |
Solved! Go to Solution.
@GBilger what you can do is calculate a dynamic measure that returns the delta between the forecasts, so as to pass them directly into the chart and thus remove the subtotals, like this:
The graph above is the original one, in the one below I passed the DELTA measure as a value, calculated as follows:
@GBilger what you can do is calculate a dynamic measure that returns the delta between the forecasts, so as to pass them directly into the chart and thus remove the subtotals, like this:
The graph above is the original one, in the one below I passed the DELTA measure as a value, calculated as follows:
@GBilger If the solution is correct, I ask you to mark it, otherwise explain to me in more detail and let's see how to fix it!
B.
@GBilger Hi!
You can calculate an empty column like: Column= "" and put this new Column in the Breakdown field of the Waterfall Chart.
B.
Hi,
The proposed solution did get rid of the labels for the increases/decreases. However I was curious if there is a way to get rid of subtotal bars in between. For this example it would just show the 2019 LRP and Actuals bars. In between would be all the differences.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |