Forum Discussion

Diva20's avatar
Diva20
Frequent Visitor
5 years ago

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.

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

 

Help me on on this.

 

Thanks in Advance 🙂

 

Divya

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi, This is super helpful. Can you edit the measure or suggest how to approach the same if I have more than 2 categories. For example, the above, suppose there's a Mid HC and Starting Hire + External Hire +Rehire = Mid HC. Similarly Mid HC+ transfer out + vol + inv = End HC

  • Anonymous's avatar
    Anonymous
    Not applicable

    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