Max length text size

Hey,
is there a way to limit the size of a text field ?
I have a title field that I want to be limited to 100 characters.

  • does Access Rules are the way to solve it ?
  • And if it’s the api that write the title, is it gonna fail during the insert/update if the title exceed the limit?

Thanks

Hi @Sao.

One way would be to use a trigger formula that’s applied on changes to the current field. The following formula should truncate any text that exceeds 100 characters:

value[:100]

George