Skip to main content
snehal shinde a posé une question dans #Automation

Hello Everyone,

I have website not available checkbox field on lead object and one website field. I want to write a validation rule for website and website not available checkbox field should mandatory on lead status 'Working'. 

Thanks in advance 

1 réponse
  1. 22 déc. 2021, 10:38

    Hi @snehal shinde,

     

    Kindly try the following

     

    AND(

    ISPICKVAL( Status ,"Working"),

    OR(website_not_available__c=False,

    ISBLANK(Website))

    )

    Take into consideration the API Name of the custom Field you created

     

    Cheers!

0/9000