Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
yash_gaur
New Member

Waterfall Chart

I have a table like this - 

IDCode
1Initial
2Initial
3Intermed1
4Intermed2

I want to have Code column as axis and count of ID column as values for my waterfall chart. The waterfall chart should show initial count as the starting balance, subtract intermed1 count from it and add intermed2 count to the resulting data to show the ending balance. So starting balance would be 2. To it intermed 1 would be subtracted (2-1). Then intermed2 will be added (2-1+1) to give the ending balance as 2. Right now the waterfall chart just adds intermed1 and intermed2 count to the initial count. Any thoughts on how to make it customizable ? 

Thanks in advance.

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @yash_gaur ,

 

Has your problem been solved? If it is solved, please mark a reply which is helpful to you.

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

 

Best Regards,
Winniz

v-kkf-msft
Community Support
Community Support

Hi @yash_gaur ,

 

Please try the following formula:

 

Measure = 
IF (
    MAX ( 'Table'[Code] ) = "Intermed1",
    - COUNT ( 'Table'[ID] ),
    COUNT ( 'Table'[ID] )
)

image.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.