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: 
xyz_1011
Partner - Creator II
Partner - Creator II

QlikView Waterfallchart

Hi all,

can anyone help me turning the bar chart in the attached QVW into a waterfall chart ? 

Thanks a lot in advance!

1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

In such case you may need an interrecord-function like above() for the offset, maybe something like:

rangesum(above(sum(Sales), 0, rowno()))

- Marcus

View solution in original post

4 Replies
marcus_sommer
MVP
MVP

The magic to create a waterfall-chart is to calculate an appropriate offset-value within the attribute-expressions. More details could you find here: Waterfall Chart in QlikView - Qlik Community - 1481353

- Marcus

xyz_1011
Partner - Creator II
Partner - Creator II
Author

Thanks @marcus_sommer I get the idea with using multiple expressions where expression #2 uses expression #1 as bar offset....but how do i do this with just one expression (i.e. sales by month)

marcus_sommer
MVP
MVP

In such case you may need an interrecord-function like above() for the offset, maybe something like:

rangesum(above(sum(Sales), 0, rowno()))

- Marcus

xyz_1011
Partner - Creator II
Partner - Creator II
Author

Thanks @marcus_sommer  This

rangesum(above(sum(Amount), 1, rowno()))

actually did the job 🙂