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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.