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
Eric Praud (Activ8 Solar Energies) Forum Ambassador
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)