Danish For instance, if a user tries to enter their income, the form should accept inputs like “5000”, “249.99”, or “10000.50”, but it should reject inputs like “5,000”, “2,499.99”, or “10,000.50” because of the commas.
Danish Now you can validate fields in Sheetgo forms with regex. See the post for details. Solution: Header [regex:^[0-9.]*$] In the field for the above header, the regex expression ‘^[0-9.]*$’ will only allow numbers from 0 to 9 and the period (.) Header Featuring regex validation 1. 2.
Utsav Danish is there any official sheetgo documentation for this ? can you put the link for it over here ?
Eugenia Utsav There’s an article about validation How to use validation in your Sheetgo Form This does not explain regex in-depth, but it gives an intro on how to use it in forms.