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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Acumulate values in Sense

Hi!

I'm tying to crate a bar chart that show the accumulated open tickets (Inc_ID)  for a range of weeks.

When I use this expression the result is a value for each week , not the accumulated values.

'rangesum(above(count(distinct {<inc_status={'Open'}>} inc_ID),0 ))'

 

Acumu.PNG

/Stefan

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Try this?

rangesum(above(count(distinct {<inc_status={'Open'}>} inc_ID),0, Rowno(TOTAL) ))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
sunny_talwar

Try this

RangeSum(Above(Count(DISTINCT {<inc_status = {'Open'}>} inc_ID), 0, RowNo()))
Anil_Babu_Samineni

Try this?

rangesum(above(count(distinct {<inc_status={'Open'}>} inc_ID),0, Rowno(TOTAL) ))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful