Forum Discussion

alecw044's avatar
alecw044
Regular Visitor
8 years ago
Solved

Waterfall Chart Not Showing Decreases

Hello,   I am trying to create a waterfall chart which would show the increases/decreases from a value from month to month. Currently, I can only get it to where it is adding the values from the pr...
  • v-piga-msft's avatar
    8 years ago

    Hi alecw044,

     

    You should drag an other field to Breakdown so that it will show the Decrease. 

     

    In addition, you could calculate the difference for the Count of Assets and create the waterfall chart.

     

    difference =
    CALCULATE (
    MAX ( 'Table1'[Count] ),
    FILTER ( ALL ( 'Table1' ), 'Table1'[Month] = EARLIER ( Table1[Month] ) + 1 )
    )
    - 'Table1'[Count]

     

     

    More details, you could have a look at this document.

     

     

    If you still need help, please share some data sample and your expected output.

     

    Best  Regards,

    Cherry