Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Grand Total in Bar Chart

Dears,   I have below chart prepared calculting total spend busienes unit wise comparing two years and I need to see total of 2018 vs 2019 for all business unit at the end of chart.   
  • Anonymous's avatar
    Anonymous
    7 years ago

    Suppose that you have a dataset like that 

    a1sum2018
    b2sum2018
    c3sum2018
    a2sum2019
    b3sum2019
    c4sum2019

     

    the "sum" values in the table were added by me with creating column in power bi

     

     

    Summarized the dataset like that 

    sum6all2018
    sum9all2019

     

    "all" values in the table were added by me with creating column in power bi

     

    and union this two table then i got this view. I thought it was fine for you






    You can download pbix from there

  • v-jiascu-msft's avatar
    7 years ago

    Hi Anonymous,

     

    Another approach is as follows. You can download the demo from the attachment.

    1. Create a new table.

    Units =
    UNION ( VALUES ( Table1[Unit] ), { "YearlyTotal" } )
    

    2. Create a measure.

    Measure =
    VAR amount =
        SUM ( Table1[Amount] )
    RETURN
        IF (
            ISBLANK ( amount ),
            CALCULATE ( SUM ( Table1[Amount] ), ALLEXCEPT ( Table1, Table1[Year] ) ),
            amount
        )
    

    Grand-Total-in-Bar-Chart

     

    Best Regards,