Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping Range

Hi All!

I would like to have some help regarding mapping ranges.

Here is my Data:

data:

LOAD * INLINE [

StudentID, Age

1, 20

2, 25

3, 32

4, 40

5, 21

];

agerangetable:

LOAD * INLINE [

SN, Age Range

1, Below 21

2, 21 to 24

3, 25 to 29

4, 30 to 35

5, 36 to 39

6, 40 and above

];

I want to map the age range on my data table base on the student age, challenge is, the agerangetable is dynamic and changes when the user decides to change the range. Is there any way the user just change the agerangetable and when loaded, it will automatically change without me changing the logic? (ex. if(Age<21, 'Below 21' and so on)

3 Replies
vinieme12
Champion III
Champion III

You need intervalMAtch

IntervalMatch

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

this will be helpful

IntervalMatch function

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable
Author

can you elaborate further?

thanks!