Skip to main content

Hi

 

Could some one please advise the best formula for the following: 

 

I have a picklist value of Appointment Made and what I want is another field to be updated to "Yes" if that picklist value is selected, otherwise the answer is "No".

 

Not sure how to do this or the correct field setup in SF.

 

Thanks.

6 réponses
  1. 27 oct. 2022, 02:01

    I would just use a CASE Function like this

    CASE(call_outcome__c,

    'Appointment made','Yes',

    'No')

    CASE Function is my Go-To for Picklist fields

0/9000