Skip to main content
I Have a picklist field with the name" ID_Proof " with the picklist values as "Pan Card","Aadhar Card" and a Text Encrypted field of " PanCard " I want a write a validation such that whenever I select the ID_Proof as "PanCard " the pan card shouldnt be empty.

No errors have been thrown for the validation but when I am saving the new card selecting the ID_Proof as Pan Card and without giving the Pan card details the record is getting saved without any error. Please help.

Validation rule not working on text encrypted field.Please Help
6 Antworten
  1. 1. Aug. 2016, 07:53

    AND(

    ISPICKVAL(Id_Poof_c,"pancard"),

    (LEN(PanCard__C) ==0)

    )

    Please try this.

    Let me know if you need more help

    Thanks and Regards

    sandhya
0/9000