Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Cricket innings chart

Hi, I have attached cricket innings document. I am not able to calculate the cumulative score. I used the following expression : RangeSum(Above(sum(Runs),0,RowNo())). Can anyone tell me how to calculate run rate and rate/5 over.

4 Replies
Anonymous
Not applicable
Author

Your Expression is correct....

Is there any error/ issue that your are notable to get desired results........

anbu1984
Master III
Master III

Can you attach sample app

MK_QSL
MVP
MVP

Load Below script...

LOAD Over,

     F2,

     SubField(Score,'/',1) as RunsPerOver,

     Score,

     Runs,

     [Run Rate],

     [Rate/5ov],

     F7,

     Score1,

     Runs1,

     [Run Rate1],

     [Rate/5ov1],

     [Rate Req],

     [Runs Req],

     [Balls Rem]

FROM

[http://www.espncricinfo.com/england-v-india-2014/engine/match/667727.html?view=comparison]

(html, codepage is 1252, embedded labels, table is @53, filters(

Remove(Row, Pos(Top, 1))

));

==============

Create a straight Table

Dimension

Over

Expression

For RunRate

RangeSum(Above(SUM(Runs),0,RowNo()))/Over

For RunRate of Last 5 overs

IF(RowNo() < 5, Null(), RangeSum(Above(SUM(Runs),0,5))/5)

UPDATE:

Or you can use below expression also...

For RunRate

RangeSum(Above(SUM({1}Runs),0,RowNo()))/Over

For RunRate of Last 5 overs

IF(RowNo() < 5, Null(), RangeSum(Above(SUM({1}Runs),0,5))/5)

MK_QSL
MVP
MVP

Like this?