function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
CRMUser23CRMUser23 

Cross Object Formula to pull email address from Case

I need to match a pickvalue with Contact First name and  if matches I need to populate that contact's email address into the formula field.
 
I tried creating a formula text field with IF (ISPICKVAL(Object1.Group, Contact.Fname),Contact.email, "")  but I am getting the result I wanted.
 
How  can I access the email address from Contact table if Contact Fname or Lname maches with a pick value on another object??
 
Please help.