Skip to main content

ok, Need to implement if 2 picklist values contains "this" & "this" then display = custom text

OR

if 2 picklist values contains "this" & "this" then display = custom text (different)

and

If false display = False 

5 Antworten
  1. Eric Praud (Activ8 Solar Energies) Forum Ambassador
    15. Dez. 2021, 13:09

    Ok, so create a formula field returnign text:

     

    IF(AND(CONTAINS(TEXT(Picklist1__c),"this"),

    CONTAINS(TEXT(Picklist2__c),"this")), "Custom text", "Other Custom Text)

0/9000