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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
dotnetfan
Contributor III
Contributor III

How to use RangeRum and Above

Hello Guys,

Now I'm working on a report, the requirement is to display aggr values for each month and week as following

 JulyJulyJulyJulyAugustAugustAugustAugust
Week Number2728293031323334
Actual Value12345678
Aggr value13595111826

 

Now I used following expression to display values but I don't know how to show it based on week and month:

RangeSum(Above(Sum("Actual Value",0,RowNo()))

 

Thanks!

Dotnetfan

 

10 Replies
sunny_talwar

Not sure why neither of this work for you

RangeSum(Before(Sum(Value), 0, ColumnNo()))
RangeSum(Above(Sum(Value), 0, RowNo()))

but this worked

Aggr(RangeSum(Above(Sum(Value), 0, RowNo())),"Month","Week")

There might be more then what you provided which might be causing this... but I guess as long as it worked... we should be okay