How to Restrict field for entry Less than 50000

Hello,
If the valid numbers are 1… 50000 without leading zeros, you could just use an integer type variable with a numeric constraint . >= 1 and . <= 50000.

1 Like