Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there any way to develop a chart like shown below?
Hi! As the waterfall chart supports only measures, I guess you will have to create a measure for each month and assign custom colors, e.g. something like
January:
Measure: SUM({<Month={'January'}>}Alerts)
Custom color: GREEN()
February:
Measure: SUM({<Month={'February'}>}Alerts) - SUM({<Month={'January'}>}Alerts) to see if there is an increase or decrease
Custom color: IF(SUM({<Month={'February'}>}Alerts) - SUM({<Month={'January'}>}Alerts) > 0, GREEN(), RED())
March:
You got the drill.
So does this work for you?