• Sarita Patel
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
Object: Lead
Formula feild: Lead_Age__c
Custom feild: Lead_Age2__c

I wrote some triggers but somehow they are not working... thank you in advance 
I need to send email alert to record owner if the status is draft for a record more than 3 days; however, i don't want this WF rule run at the time of record created

 
Object: Lead
Formula feild: Lead_Age__c
Custom feild: Lead_Age2__c

I wrote some triggers but somehow they are not working... thank you in advance 
Hi,

I am new to Trigger. I want to update field if formula field value is changed. Could you please suggest.
Object: Ticket__c
Field if changed: Bill_to__c
update field: updaterequired__c


trigger Checkprojectbilltoaccount on Ticket__c (before update){
    for(Ticket__c newchange:Trigger.new) {
    Ticket__c oldchange = system.trigger.oldMap.get(newchange.Id);
    if (oldchange.Bill_To__c !=newchange.Bill_To__c) 
        {
              newchange.UpdateRequired__c = True;
              
        }
        }