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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Condition Problem

Hello,

Im currently using some sums if the account balance is on some account that accumulate values.

Currently i use this expression:

RangeSum(Above(SUM({$< Account={'0',

'1',

'2',

'3',

'4',

'6',

'7',

'8',

9',

'10',

'11'}

>} [MXN_Amount BSEG])

,0, RowNo(TOTAL)))

I was wondering if its possible to do something like:

RangeSum(Above(SUM({$< Account >= '1' and Account <= '1000'

>} [MXN_Amount BSEG])

,0, RowNo(TOTAL)))

I havent been able to make this work

Any ideas?, comments?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe like this

RangeSum(Above(SUM(

{$< Account = {">=1<=1000"} >}

[MXN_Amount BSEG])

,0, RowNo(TOTAL)))

View solution in original post

2 Replies
MayilVahanan

Try like this

RangeSum(Above(SUM({<Account  {">= 1 <= 1000">} [MXN_Amount BSEG]),0, RowNo(TOTAL)))

For Set analysis, please refer this

Set Analysis: syntaxes, examples

Its useful to learn abt set analysis

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
swuehl
MVP
MVP

Maybe like this

RangeSum(Above(SUM(

{$< Account = {">=1<=1000"} >}

[MXN_Amount BSEG])

,0, RowNo(TOTAL)))