
Is it possible to capitalize the first letter in a field? The field is First Name. I don't want to enforce this, but rather upon tabbing off the field, capitalize the first letter. Similar to the Phone # fields, which automatically format.
Possible? Thanks!
Hey Steve, - Setup | Create | Workflows & Approvals | Workflow Rules.
- New Rule.
- Select the Object.
- Evaluation Criteria : created and every time it's edited.
- Rule Criteria : formula evaluates to true.
- Formula :
AND(
)
- Save & Next.
- From under Immediate Workflow Actions , click Add Workflow Action to select Field Update.
- Select the Field to Update : FirstName.
- Select User a Formula to Set the new Value.
- Click Show Formula Editor.
- Formula :
UPPER(LEFT( FirstName , 1)) &
MID( FirstName , 2, LEN( FirstName ))
- Save
- Done
- Activate
Best,