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
gs0551gs0551 

Formula field Dependent on two pick list fields

Hello All,

I am trying to create a formula field of type text, which depends on two other picklist fields. For Example If picklist field "Timing__c" = "Thursday Readiness" and if other Picklist field "Result__c" is either "Empty", "Ready," "Major Work", "Minor Work" , then the formula field should show Yes, else it should show up as No.

 

 

IF (ISPICKVAL( Timing__c, "Thursday Readiness") & ISPICKVAL( Result__c , "") ) ,"Yes", "No")

 

Any Suggesstions?

ynwaynwa

Try something like below:

IF(AND(ISPICKVAL( Timing__c, "Thursday Readiness"), OR(ISPICKVAL( Result__c , ""), ISPICKVAL( Result__c , "Ready"),ISPICKVAL( Result__c , "Major Work"), ISPICKVAL( Result__c , "Minor Work"))), "Yes", "No")