Skip to main content
I would like to add a field in Lead module 'Lead Rejection Reason' and have users provide reason for rejecting a lead if Lead Status equals Reject. We have many leads that have already been rejected but going forward would like to have a process in place. Any guidance on this is much appreciated.

 

Thank you.
4 réponses
  1. 4 juin 2021, 14:47
    Hi Nashila,

     

    AND(

     

    DateValue(LastModifiedDate)  >=   Date(2021, 06,04 ),

     

    TEXT( Status )='Rejected',

     

    ISCHANGED( Status ),

     

    ISBLANK( Lead_Rejection_Reason__c ) )

     

    should be syntactically correct. Although Date check is not needed as validation rule is triggered only on record save. So Old records can still be as-is. Also, hardcoding values are not always advisable.
0/9000