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: 
Anonymous
Not applicable

Sales range as chart dimension

Hi,

Does any know how to script Sales Range as a dimension of a chart to show number of salesperson in each of such range?   Thanks.

SalespersonSales Record in Mar
A20
A80
A40
B55
B75
C50

Expected Result

Total Sales < 100     :    1 sales person (C)

Total Sales > 100     :    2 sales person (A & B)

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be with a calculated dimension like this

=Aggr(If(Sum([Sales Record in Mar]) < 100, 'Total Sales < 100', 'Total Sales >= 100'), Salesperson)

Capture.PNG

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

May be with a calculated dimension like this

=Aggr(If(Sum([Sales Record in Mar]) < 100, 'Total Sales < 100', 'Total Sales >= 100'), Salesperson)

Capture.PNG