Hello guys,
in this screen capture I have a configuration table that the user can enter numbers in (the field type is string), there is a case in which the user can select numbers randomly by just inputting one then comma then another, and the other case is for it to be a range that uses all numbers between the two limits of the range (in this example 10001..10100, there are 5 numbers between: 10005, 10010, 10015, 10050, 10070) I wanted to fetch from this table informations concerning the checkboxes that are present here by using these numbers but I didn't know how to know how the numbers exisiting within the range

The method I created is (Number here is refering to the string that I am checking:
while select theTableInTheScreenCapture
{
if(match(mYNewTable.Number, theTableInTheScreenCapture.Number))
{
mYNewTable.CheckBox1 = theTableInTheScreenCapture.CheckBox1;
mYNewTable.CheckBox2 = theTableInTheScreenCapture.CheckBox2;
}
//else if (the case of an interval ..?)
}
Thanks in advance :) .