Skip to main content

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 answer
  1. Dec 22, 2021, 10:38 AM

    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