SOLVED Dat select by value expression syntax

Hi,

Using a dat select op, i would like to select rows of a linked table by evaluating values in column 3

What would be the correct syntax for eval integers such as

Cell content > 7
Or
0 < cell content < 7

Int(me.inputCell.val) > 7 ???

I have also tried re.match expression but I guess that works only with strings.

Many thanks

Solved.

I should have selected the “Select Row : by condition” parameter instead of “Select Row : by value”

And the syntax is simply
me.inputCell>7
or
0 < me.inputCell < 7

Thanks.