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
Diva20
Frequent Visitor

How to build a Waterfall Chart with multiple columns

Hi Users,

 

Im trying to see if i can create a waterfall chart with multiple columns in the "Category section" and also trying to figure out on how to build a single measure for all the categories. 

 

Attached  is the example that i want to build.

community.PNG

But i have External Hire, Rehire, Transfers in.....etc, in data in multiple columns.

 

Help me on on this.

 

Thanks in Advance 🙂

 

Divya

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @Diva20 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.

 

Best Regards,

Rico Zhou

v-rzhou-msft
Community Support
Community Support

Hello @DivyaAluri3

I have a test building a sample.

You must create two additional tables.

Category table:

1.png

Breakdown table:

2.png

My data table:

3.png

Build a measure:

Measure = 
VAR _StartingHC =  SUM('Table'[Starting HC])
VAR _External = SUM('Table'[External Hire])
VAR _Rehire = SUM('Table'[Rehire])
VAR _Transfersin = SUM('Table'[Transfers in])
VAR _TransferOut = SUM('Table'[Transfers Out])
VAR _Vol = SUM('Table'[Vol])
VAR _INV = SUM('Table'[Inv])
VAR _EndingHC = SUM('Table'[Ending HC])
Return
  SWITCH (
    SELECTEDVALUE (Category[CategorySort] ),
    1, SWITCH (
        SELECTEDVALUE (Breakdown[Breakdown] ),
        "External Hire", -1*(_External-_StartingHC),
        "Rehire",-1*(_Rehire-_External),
        "Transfers Out",-1*(_TransferOut-_Transfersin),
        "Vol",-1*(_Vol-_TransferOut),
        "Inv",-1*(_INV-_Vol),
        _StartingHC
    ),
    2, SWITCH (
        SELECTEDVALUE (Breakdown[Breakdown] ),
        "External Hire", 0,
        "Rehire",0,
        "Transfers Out",0,
        "Vol",0,
        "Inv",0,
        _EndingHC
    )
)

Result:

4.png

It seems that the waterfall chart will not be sorted by breakdown now: Classification in the attribution distribution of the waterfall chart does not work

And you can check out this blog for more details on how to create this waterfall chart: How to make waterfall charts work

You can download my pbix file from this link: How to create a multi-column waterfall chart

Best regards

Rico Zhou

If this post helps,then consider Accepting it as the solution to help other members find it faster.

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.