Skip to main content
Hello I have a lead status which has an option of sending a lead to a distributor however I want to ensure before a user can save the lead with this status that they have filled in the distributor contact in the lookfield below the status. I have used the follow code below but it does not work can anybody help:

 

AND( ISPICKVAL(Status, "Sent to Distributor"), LEN( Distributor_Lead_Sent_To__c ) > 0)
1 respuesta
  1. 12 jul 2016, 22:40
    Hi Jonathan,

     

    Please try the below

    AND(

    ISPICKVAL(Status, "Sent to Distributor"),

    ISBLANK( Distributor_Lead_Sent_To__c )

    )

0/9000