답변 9개
Hi Roger, If you want a field to be mandatory on a perticular Status, use the following validation rule
AND(
ISPICKVAL(Status,'Closed'),
ISBLANK(OtherFieldName__c)
)
When the other field is a picklist, use the below
AND(
ISPICKVAL(Status,'Closed'),
ISBLANK(TEXT(PicklistName__c))
)