Forum Discussion
Waterfall Chart Not Showing Decreases
- 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
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
Hey I am trying to achieve exactly this, but how would I incorpoirate my date table? Whenever I try and use the date column after the EARLIER function I just get red squiggly lines and I have no idea why