BYPASS VALIDATION RULES ADD LOGIC AND FLEXIBILITY FOR DATA QUALITY

Definitively, YES. Axy Validator has a feature that permits any Salesforce admin to configure a Bypass for pre-build validations such us IBAN or VAT.

If you need to run any of our prebuild validations, but some times you need to exclude a record from being validated, you can create a ByPass Field that will tell Axy Validator when to run validations.

This ByPass Field has to be named AxyValidator_ByPass__c. Axy validator checks if a so-named field exists and which value it has.

The field AxyValidator_ByPass__c needs to be Boolean and our recommendation is to create it as formula field. By doing that you will be able to handle some business logic.

Example.

Let’s say that you only need to check the Social Security Number in contact records where the RecordType is “Employee”.
Just by creating a formula field named AxyValidator_ByPass__c that contains the next logic, Axy Validator will exclude the records that are not Employee:

RecordType.DeveloperName=”Employee”