Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
adhudson
Creator II
Creator II

Waterfall Chart with negative values

Is there any way to develop a chart like shown below?

  • Dimension           – Year Month
  • Measure              – No of alerts generated by iComfort Devices.
  • Coloring               – Alerts generated by Current Month > Previous Month -> Green                                                                                    – Alerts generated by Current Month < Previous Month -> Red

Waterfall.jpg

2 Replies
Ivan_Bozov
Luminary
Luminary

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.

vizmind.eu
Ivan_Bozov
Luminary
Luminary

So does this work for you?

vizmind.eu