IF(ISPICKVAL(LegalStratusISV__Matter_Roles__c, "Attorney", Yes, No))
There are matter and there are roles on a Matter such as "Attorney" and "Lead Attorney". I am creating a field called "Claimant Represented?" and I want it to return the text "Yes" or "No" depending on if any role with "Attorney" has been added.
I am currently getting the error "Field Yes does not exist. Check spelling.
2 answers
Try this =
IF(ISPICKVAL(LegalStratusISV__Matter_Roles__c, "Attorney"), "Yes", "No")
Assuming the return type of your formula is String type.