Disable decimals from "Number entry" field

In a “Number entry” field, can we only allow users to enter rounded numbers (no decimals)?

Thanks!

No, I don’t believe so.

But you can post-process the entered data to round it or truncate it. (with a Math column)

1 Like

Something you can try is regular expressions. For instance you point a “Text Matches” column at the column that stores the numbers and type this in ^ [0-9]+$ (remove the space after ^) This will be false anytime a non number is input. then you can display a warning when this field is false & disable the next step while this field is false.

Assuming this is a form environment, It would only work when you have a custom form to control the visibility of the form. I would love the ability to specify submission conditions for native forms based on more logic than just what is required or not.