Validate long text word/character count

Hi @amiller. You can use regex match in the conditions. This allows users to have a more complex validations.

If you are not familiar with regex, you can ask AI such as ChatGPT to help generate one for you. Here’s an example of a regex that accepts values for a field with a length of up to 10 characters or less.

^.{1,10}$

Please let me know if there is anything else that we can help you with.