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

Display cummulative value


Hi Everyone,

I would like to display the sum of all values upto current month in data points upon mouse over. For example, if i have a chart with month names in dimension and some value being used in expression, if i hover over the May month's value, it should show the sum of all values starting from Jan to May in tool tip( as data points). Is it possible?

Please advice.

Thanks,

Senthil.

1 Solution

Accepted Solutions
sundarakumar
Specialist II
Specialist II

U  can have it as a different field for pop up, or u can use dual for the same purpose, like in the attachment.

dual(sum(stock)&chr(10)&'Accumulated = '&rangesum(above(sum(stock),0,rowno())),sum(stock))

View solution in original post

3 Replies
sundarakumar
Specialist II
Specialist II

PFA

sundarakumar
Specialist II
Specialist II

U  can have it as a different field for pop up, or u can use dual for the same purpose, like in the attachment.

dual(sum(stock)&chr(10)&'Accumulated = '&rangesum(above(sum(stock),0,rowno())),sum(stock))

Not applicable
Author

Hey Sundarakumar,

Thank you for your quick response. It seems to be working great