I am a User.
AND I want to rename name automatically by appending Rating on the right
Example: Acme Name - Hot
trigger AccountTrigger on Account (before insert, before update) { if(Trigger.isInsert){ for(Account ac : Trigger.new){ ac.Name = ac.Name + ' - ' + ac.Rating; } } } }