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
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!