If the values between 2 fields on the same object are the same then it should not save. The fields are picklist. For example.
IF(ISPICKVAL(field1_c) =(field2_c))
But this get the follwoing error:
Error: Field Pain_Point_1__c is a picklist field. Picklist fields are only supported in certain functions
14 answers
Give this a shot:-
AND(
NOT(ISBLANK(text( field1_c ))),
NOT(ISBLANK(textfield2_c ))),
TEXT(field1_c)=TEXT(field2_c))
Regards,
Subbu.