Skip to main content
T O ha preguntado en #Data Management
Hi

 

I am trying to do a cross object formula but obviously wont work for a picklist value.

 

The picklist field I am trying to do is Surcharge_Option__C on Quote_for_SA object.

 

Can some one help?

 

 
3 respuestas
  1. 22 oct 2015, 11:50
    Cross object formulas work for picklist fields.  

     

    If you want the value of the parent field on the child record use the TEXT function in your formula:

     

    TEXT(theParent.thepicklist__c)

     

    If you want to reference the parent value to make a decision, use the ISPICKVAL function

     

    ISPICKVAL(theParent.thepicklist__c, 'A')
0/9000