Skip to main content
I think this will need to be "If / Then" - 

 

If picklist X1_Product_Requested__c is SMARTci or SMARTci+

 

Then the picklist value for X1_GirtClip_Depth__c and X1_Insulation_Depth__c have to be the same
4 answers
  1. Jul 26, 2016, 6:26 PM
    Hi Julie,

     

    Please try the below

    AND(

    CASE(X1_Product_Requested__c,

    "SMARTci",1,

    "SMARTci+",1,

    0)=1,

    TEXT( X1_GirtClip_Depth__c) <> TEXT( X1_Insulation_Depth__c)

    )

     

     
0/9000