Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi. Is there a way to plot the below waterfall chart in PBI based on this data? Do I need to restructure the data? How so?
Basically, The blue bar is how many incidents we started the week with. The reason for the suffix "Criticals" under the Category column is because there will be also High, Medium and Low levels of severity (the severity_ID column will later have 2, 3 and 4, in addition to the existing 1.) The Area_ID column will have the business unit that generated the incident.
Thanks so much.
| Start_Date | CATEGORY | COUNT | AREA_ID | SEVERITY_ID |
| 11/18/2024 | Older_Criticals | 40 | 1 | 1 |
| 11/18/2024 | New_Criticals | 10 | 1 | 1 |
| 11/18/2024 | New_Criticals | -5 | 1 | 1 |
| 11/18/2024 | Older_Criticals | -20 | 1 | 1 |
| 11/25/2025 | Older_Criticals | 25 | 1 | 1 |
| 11/25/2024 | New_Criticals | 15 | 1 | 1 |
| 11/25/2026 | New_Criticals | -10 | 1 | 1 |
| 11/25/2027 | Older_Criticals | -15 | 1 | 1 |
Hi @yasbos
Yes, you can create the desired waterfall chart in Power BI based on your data, but you'll need to restructure it slightly to fit the requirements of a waterfall chart. Here's how you can do it:
Your data represents incidents with positive and negative counts:
To create a waterfall chart, you need a dataset where each row represents a step in the waterfall with a category and a value. You may need to aggregate your data to summarize the counts per category and date.
Restructured Data Example:
| Start_Date | Category | Value | AREA_ID | SEVERITY_ID |
|---|---|---|---|---|
| 11/18/2024 | Start Balance | 40 | 1 | 1 |
| 11/18/2024 | New Incidents | 5 | 1 | 1 |
| 11/18/2024 | Resolved Incidents | -25 | 1 | 1 |
| 11/18/2024 | End Balance | 20 | 1 | 1 |
| 11/25/2024 | Start Balance | 20 | 1 | 1 |
| 11/25/2024 | New Incidents | 5 | 1 | 1 |
| 11/25/2024 | Resolved Incidents | -25 | 1 | 1 |
| 11/25/2024 | End Balance | 0 | 1 | 1 |
Notes:
Import Your Data into Power BI.
Create a Calculated Table (if necessary) to aggregate and restructure your data:
WaterfallData =
VAR StartBalances =
SUMMARIZE(
FILTER('YourTable', 'YourTable'[CATEGORY] = "Older_Criticals"),
'YourTable'[Start_Date],
"Category", "Start Balance",
"Value", SUM('YourTable'[COUNT])
)
VAR NewIncidents =
SUMMARIZE(
FILTER('YourTable', 'YourTable'[CATEGORY] = "New_Criticals" && 'YourTable'[COUNT] > 0),
'YourTable'[Start_Date],
"Category", "New Incidents",
"Value", SUM('YourTable'[COUNT])
)
VAR ResolvedIncidents =
SUMMARIZE(
FILTER('YourTable', 'YourTable'[COUNT] < 0),
'YourTable'[Start_Date],
"Category", "Resolved Incidents",
"Value", SUM('YourTable'[COUNT])
)
RETURN
UNION(StartBalances, NewIncidents, ResolvedIncidents)
Calculate End Balance:
Create a Measure to calculate the running total (End Balance):
EndBalance =
CALCULATE(
SUM(WaterfallData[Value]),
FILTER(
ALL(WaterfallData),
WaterfallData[Start_Date] <= MAX(WaterfallData[Start_Date])
)
)
Insert a Waterfall Chart Visual into your report.
Configure the Fields:
Set Up the Waterfall Steps:
Customize the Visual:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn|Twitter|Blog |YouTube
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |