Issue
When submitting a structured table, my integer type field is giving an "Invalid value for field [field name]: "[###]" " error message even though the value in the field is indeed an integer.
Environment
Registration table, Inventory table, Results table, Schema
Cause
Our integer fields only support 32-bit signed integers, or values in the range [-2147483648, 2147483647]. You will receive this error if your integer value is outside of this range.
Resolution steps
Change the field type to Decimal as our Decimal field type can hold larger numbers, up to 1.797e308. If you are expecting your value to still exceed 1.797e308, change the field type to Text.