Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 ))'
/Stefan
Try this?
rangesum(above(count(distinct {<inc_status={'Open'}>} inc_ID),0, Rowno(TOTAL) ))
Try this
RangeSum(Above(Count(DISTINCT {<inc_status = {'Open'}>} inc_ID), 0, RowNo()))
Try this?
rangesum(above(count(distinct {<inc_status={'Open'}>} inc_ID),0, Rowno(TOTAL) ))