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
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)
)