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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Waterfall Chart summing issue

Hi all,

I have some data, this is a part of it:

Screen Waterfall 1.PNG

I want to do the Waterfall Chart which shows me difference between sums along every version, the table of version/value looks like this:

Screen Waterfall 2.PNG

but when I try to do the version/value waterfall chart it adds up to total  1 567 367,89 and I want it to show me changes between f.e. W13 and W14 is +47,11 not +170 055,70.

Screen Waterfall 3.PNG

 

How do I do that? Should I do some measures? I want it to be responsive to other filters also so I cant do new table with flat values.

Thanks in advance

 

4 REPLIES 4
poweraspirant
New Member

Hi Everyone, 

I am trying to develop a Waterfall chart on the data attached. But unable to get correct balance amount . Can anyone help me how to declare start value and get correct balance in waterfall chart. 

Capture.JPG

v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Please add below calculated columns in original table.

Sum per version =
CALCULATE (
    SUM ( Version_Value[Value] ),
    ALLEXCEPT ( Version_Value, Version_Value[Version] )
)

Sum next version =
CALCULATE (
    SUM ( Version_Value[Value] ),
    FILTER (
        Version_Value,
        Version_Value[Index]
            = EARLIER ( Version_Value[Index] ) + 1
    )
)

Diff =
IF (
    Version_Value[Sum next version] = BLANK (),
    Version_Value[Sum per version],
    Version_Value[Sum next version] - Version_Value[Sum per version]
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

I did what you told and it looks good, but I can't filter the data now, f.e. i want to show only for January, but it still sums all the cells.

Is there a way to enable this kind of filters?

 

Radkos

Anonymous
Not applicable

Screen_Waterfall 4.PNG 

These columns are very important to filter, do I put something into existing measure or should I write new one?

Thank again for all help.

Radkos

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.