Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
hempers055
Contributor
Contributor

Vertical Waterfall Diagram + total/delta line

Hello,

is it possbile to create a vertical water fall diagram by using a bar chart object in QlikView?

The result should look like this:

hempers055_0-1607350069275.png

It shows for each month the forecast value and on the last 3 lines the totals/delta

Thx 4 help

2 Replies
QFabian
Specialist III
Specialist III

Hi @hempers055 , you can do something like this :

QFabian_0-1607352900536.png

using bar offset properties with column(x) function :

QFabian_1-1607352949299.png

 

then, continue doing this for all of your columns, adding the offset like this :

QFabian_2-1607352986863.png

 

total, with no offset , using column() function:

QFabian_3-1607353014293.png

 

please try

QFabian
marcus_sommer

The month + total is directly possible but the budget + delta could not simply be added as an extra expression. What you could do is to add total + delta + budget as dimension-values to the month field - just double the field within your data to get no conflict with any other views and then you query those values within your expression. Maybe with something like this:

if(MonthSpecial = 'total', sum(total value), if(MonthSpecial = 'budget', sum(budget), if(MonthSpecial = 'delta', sum(budget) - sum(total value), sum(value))))

- Marcus