Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Simple running total Question

I am new to Qlikview and just experimenting with simple data. I have loaded a table with three columns: Date, Name and Value. I want to create a straight table which displays me a running total (Total) by Date and Name.

However the following expression does not work for me. rangesum(sum("Value"),above("Total"))

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

try rangesum(sum("Value"),above(sum("Value"))

or better rangesum(above(sum("Value"), 0, rowno()))

View solution in original post

3 Replies
giakoum
Partner - Master II
Partner - Master II

try rangesum(sum("Value"),above(sum("Value"))

or better rangesum(above(sum("Value"), 0, rowno()))

Not applicable
Author

Thanks Ioannis, however the Total colum just displays the same value for the Value column. Is there anything else I need to set-up?

Not applicable
Author

Actually swappign the name and Date dimensions, this works