Solution:
trigger LeadTrigger on Lead (before update) { if(Trigger.isBefore && Trigger.isUpdate) { for (Lead leadRec : Trigger.NEW) { leadRec.Status = ‘Working-Contacted’ ; } }
}
Your email address will not be published. Required fields are marked *
Name*
Email*
Website
Save my name, email, and website in this browser for the next time I comment.