e.g. if custom picklist_field__c has a value of 1, 2, 3, 4 or 5 ...enter that value
else, if lookup_field__c has value, then enter that value as text
4 respuestas
Everything worked fine for me;
Is the lookup field a picklist as well? The formula assumes that Picklist Field is a Picklist and that Look Up Field is a text field, if the lookup field that you are looking up is a picklist just try this:
IF(NOT(ISBLANK(TEXT(Picklist_Field__c))),TEXT(Picklist_Field__c),TEXT(Lookup_Field__r.Name))
Best of luck!