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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
abc_18
Creator II
Creator II

Running total Value

Hi,

I am using three expression and drill down option for (month and date) in bar chart.

1> Tickets Created=Count(DISTINCT{<Flag={'[Date Submitted]'}>} IncidentNumber)

2>Tickets Closed=Count(DISTINCT{<Flag={'[Date Closed]'},Status={'Closed'}>}IncidentNumber)

and in third expression I am calculating difference between these two ie'

3>Baclokg Tickets=Count(DISTINCT{<Flag={'[Date Submitted]'}>}IncidentNumber)

-

Count(DISTINCT{<Flag={'[Date Closed]'},Status={'Closed'}>}IncidentNumber)

but in Third expression I want to calculate running total value for backlog tickets (Month/Date wise), so if I click on bar chart for Feb-15(Monthly), it should display 198 for 28-02-15.

calculation is like this:- (968-870=98+190=198).but currently I am getting only difference between these two ie' 98

Month Wise.pngDateWise.png

Labels (1)
1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try this one:

Sum(

     Aggr(

          RangeSum(

               Above(

                    Count(DISTINCT{<Month=,Flag={'[Date Submitted]'}>}IncidentNumber)

                    -

                    Count(DISTINCT{<Month=,Flag={'[Date Closed]'},Status={'Closed'}>}IncidentNumber)

               ,0, RowNo())

          )

     ,Month

)


talk is cheap, supply exceeds demand