I am a User.
WHEN I enter Billing Country as America, I want it to be USA
trigger AccountTrigger on Account (before insert) { for(Account ac : Trigger.new){ if(ac.BillingCountry=='America'){ ac.BillingCountry='USA'; } } }