Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to display informations in range format

Hi,

I have a table that contains the students notes. for example:

Name Note

Jose  80

Carlos 60

Miguel 90

Manuel 100

Pedro 40

I would like to take out the next statistcs:

between 0 and 50: how much

between 50 and 70: how much, etc...

I'm thinking create an inline table with description ranges and in the qvw file validate using the if statement.

Anyone can help me?

1 Reply
maxgro
MVP
MVP

maybe with intervalmatch function

1.png


b:

load *, from & ' to ' & to as desc inline [

from, to

0,  30

31, 50

51,99

100,200

];

a:

load * inline [

name, value

Jose,  80

Carlos, 60

Miguel, 90

Manuel, 100

Pedro, 40

];

IntervalMatch (value)

load  from, to Resident b;