APPLICATION DESIGN
The default value formula provides an initial value for an editable field. You can set the value to a specific number or text string, or you can use a formula. For example:
The following formula translates the text in the Attorney field for display with initial capital letters. If a user enters the text john smith in the Attorney field, it is translated to John Smith when the document is saved.
@ProperCase(Attorney);
The following formula gives documents a uniform look by capitalizing the initial letter of the value in the Subject field and removing extra spaces.
@Trim(@ProperCase(Subject));
Input validation formula examples
See Also