Character allocation

How can I limit the number of characters in a text field. I want to make sure that no more than 60 characters can be inserted into a text field.

Subject: Input Validation Formula: @If(@Length(YourField) > 60; @Failure(“Message”); @Success)