
AND(
RecordType.Name = "RFC",
ISBLANK(RequestContact__c)
)
I want users to NOT have to enter a contact in order to EDIT "IF" the RFC was created prior to the VR being activated.
6 respuestas
Oops ! Missed a comma here,My Bad :(
OR
(
AND
(
ISNEW(),
RecordType.Name = "RFC",
ISBLANK(RequestContact__c)
),
AND
(
ISCHANGED(RequestContact__c),
RecordType.Name = "RFC",
NOT(ISBLANK(PRIORVALUE(RequestContact__c))),
ISBLANK(RequestContact__c)
)
)