Record type is equal to `SH`
and
Status (pick list) is equal to `CA` or`NEW`
then
Contact (lookup field) cannot be blank
Thanks in advance for your help
3 answers
Hi James,
Let's try the following validation rule:
RecordType.Name = 'SH' &&
(ISPICKVAL(Status, 'CA') || ISPICKVAL(Status, 'NEW')) &&
ISBLANK(Contact)
If you are using custom fields or objects, you may need to append __c to the end of the Status and Contact fields in this formula.
Hope this helps!