Neither of these formulas bring up the error message when I go to make a new record:
Does anyone have thoughts on how to write a formula that that picks up on the Vendor ' C W Transport' and the CW Transport Driver being blank?
Thanks
7 risposte
You have
"Vendor_Object__c = "C W TRANSPORT" "
I'm suggesting
Vendor_Object__c.Name = "C W TRANSPORT",
Vendor_Object__c is looking for the ID of the record, not the name, which is why the rule isn't firing.
You'll need to use the field picker to get the exact API name for Vendor_Object__c.Name