function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mireille BonapartMireille Bonapart 

Update initials automatically according to firstname of Contact

Hi everybody,

I just started as an SF admin and I'm having a hard time with the configurating process of the clients org. It seemed simple to start with, but now I find it hard to apply to their (many!) specific requests.

For example, the client wants the Initials field in Contacts automatically updated (according to the firstname of the Contact). So firstname Bob updates to B. as an initial in the initial field.

Do I need to create a trigger for this to happen (never created a trigger before)?

Any help is appreciated!

Thanks!
hybin joseph 2hybin joseph 2
Hi Mirelile,

U can either create the Initital Field as a Formula field that just pulls the First Charachter from the First Name Like this :
 
LEFT(FirstName, 1)

Or If the field is already created u can use a workflow to update that field with the formula above.. Lemme know if u have any questions
 
Mireille BonapartMireille Bonapart
Hi Joseph,

Sorry for my late response. :) Thanks for your reply (it's my best answer)!