When using validation rules it is important that you test the rules

With so many changes in Salesforce records made by employees on a daily basis, it may be hard to keep track of the quality of the input data. With the help of Validation Rules, Salesforce offers a solution to safeguard the users from making mistakes [such as indicating phone numbers in the wrong format], as well as to establish verification boundaries and standardize the data requirements in general.

On this page, we’ll share what validation rules are, how and where they can be applied, cover the common limitations, and help you learn how to create a Salesforce validation rule on a case step by step.

What are Validation Rules in Salesforce?

Validation rules are one of the five rule types in Salesforce which are processed in this sequence:

Validation Rules → Assignment Rules → Auto-response Rules → Workflow Rules → Escalation Rules. 

What are Validation Rules Used for?

The main purpose of a validation rule is to make sure that the data the user has input, updated, or removed on a record fits the specified standards before saving. In case it doesn’t, the validation rule automatically shows an error message with a short explanation of what was entered incorrectly, preventing the user from saving the changes with invalid data. By having such rules, you can avoid incorrect values and unnecessary confusion.

Setting up multiple validation rules that evaluate the data entry in one or more fields might take lots of time and effort. Get in touch with our certified Salesforce consultants to ensure they meet required standards

How Do Validation Rules Work

Validation rules trigger every single time there’s an attempt to save the record. The required conditions of the rule are indicated in formulas. The formulas contain one or more criteria that should be met in order to pass verification and save the record.

Put simply, validation rules check whether a specific field [or fields] corresponds to the indicated criteria. If the data is correct, the record gets saved. If not, the rule displays an error message, signalling the mistake. This means that unless the user modifies the fields to match the criteria, they won’t be able to go through verification when a new record is created or when changes on an existing one are trying to be saved.

Examples of Validation Rules in Salesforce 

In order to have a better understanding of where such rules can be applied, let’s take a look at some Salesforce validation rule use cases.

  1. One of the most common Salesforce validation rule examples is restricting users from entering data in the wrong format. For example, if too many or not enough digits/symbols were indicated, unallowed symbols were written [eg. “+”], or the date was entered in MM-DD-YY format instead of DD-MM-YY. This is especially handy when it comes to filling out fields with phone numbers, IDs, passport numbers, birthdates, or any documentation data, for instance on Contact objects.
  2. Mentioning other sample validation rules in Salesforce, they’re often used for restricting status changes. For instance, by setting up a rule, you can limit the status field and not allow it to be changed back. Eg. if a specialist has already been in touch with the potential client and the status was changed to “Contacted” on Lead objects, you cannot switch the status back to “New”.
  3. Another example scenario could be using the validation feature for when there exists a connection with dependencies between several fields. I.e., if necessary, you can set up a rule which will tie two fields together and won’t allow saving the record if one field is filled out without the other. A use case like this could be if a payment type is selected on an Order, you must also choose the currency to save changes.
  4. Similarly, a validation rule can be useful for indicating addresses and fields with various types and subcategories. An example of this is making it obligatory to select a region/state/province/etc if you’ve chosen the country on an Account [such as when selecting “USA”, you must pick a state “Idaho”].
  5. Verifying ranges of numbers is also a frequent use case. Such validation rules help to avoid typos which can, for example, make the price a negative sum or make sure that it doesn’t exceed the standards [say, not allowing to save the record when an extra “0” was added by accident, making the cost jump from 5k to 50k].

Feel free to browse more examples of validation rules, provided by the Trailblazer Community.

If you came up with creating such rules, are stuck on the process, and need a hand in setup, our SF developers are ready to assist. We create validation rules for fields, objects, campaign members to make all your processes work seamlessly.

Cases When Validation Rules Are Skipped

It is important to mention that validation rules aren’t applicable in all cases. As such, if the verification needs to be performed on a cross-record basis or on multiple objects, validation rules won’t be the solution [generally, Apex triggers could solve such cases].

What is more, there exist limitations for validation rules. Below are some examples of when Salesforce skips validation rules:

  • Provided there are validation rules for activities, and an activity is created during the lead conversion process, although the lead will convert, a task won’t be created.
  • Comparably, during lead conversion, the validation rules will only be applied in case lead conversion validation and triggers are enabled in Lead Settings.
  • Validation rules will also be ignored by Campaign hierarchies.
  • When it comes to applying the Mass Transfer tool for changing the owner on numerous records, the validation rule won’t work. On the contrary, if the owner is changed only on one record individually [without the Mass Transfer], the rule will continue to work.

Setting up a Validation Rule in Salesforce: Explained on a Case

What a Validation Rule Consists of:

Before we jump to the case for which we’ll make the setup, let’s quickly define which elements a validation rule consists of:

  • object [this is where the rule will run field checks, f.i. Contact, Account, Opportunity, Custom object, etc],
  • formula [states the specific criteria to be met in order for the verification to go through, it always includes information about the field[s] to be checked],
  • error message [the text shown to the user if the made changes don’t meet the criteria for the record to be saved, the message states the mistake],
  • error message location [where it’s displayed on the record: at the top of the page or right under the field that has invalid data].

Case Description

When the staff of Everest FLP Ltd. surpassed the 100 people mark, the requests for paid time off started to become a mess. As per the company policy, employees are not allowed to request vacation time for more than 14 calendar days at once in PTO requests, therefore, there’s a need for a validation rule.

Step 1: Select your Object

Go to the “Setup” section, in the “Object Finder” choose the object on which the validation rule will be configured.

→ In our case, select the PTO Request object, choose “Validation Rules” from the sidebar on the left, and then press “New” in the top right-hand corner. 

Step 2: Name the Rule

  1. Assign a name to the rule by filling out the “Rule Name” [Paid Time Off 14 Days Max].
  2. Tick the “Active” checkbox.
  3. In the “Description” field give a brief explanation of what the rule should do.

Step 3: Creating the Error Condition Formula

Moving on to the “Error Condition Formula Section”, we’ll need to create a formula that will identify the validation rule criteria. It’ll be made up of the chosen “Function” [on the right, you can see the box, containing a large selection of function categories], the selected field [via the “Insert Field”], and the operator [that’s indicated via the “Insert Operator” button].

Choosing the Type of Function Category

As you can see, the list of Function Categories to select from is very lengthy, consisting of different function types, including Date and Time Functions, Logical Functions, Math Functions, and Text Functions. It is difficult to name the most commonly used ones in validation rules, but you can browse all Formula Functions here.

→ For our specific PTO case, there’s no need for selecting the function category by double click. 

Inserting the Field

Secondly, we need to choose which field will be going through the verification process. Press the “Insert Field” button and select the needed field.

→ In the PTO case, choose the PTO Request object’s custom field “Total Days Off” [that is filled out by employees when creating a request manually], then press “Insert”. It should now appear in the large formula field with underscores: “Total_days_off__c”.

✎ Side note: in case you’ve previously chosen a function, f.e. ISBLANK, followed by [expression] in the formula field, replace “expression” with your field name.

Indicating the Operator

In order to complete the formula, click on the “Insert Operator”. There are two types of Operators before you, Math and Logical, usually, the Logical ones [such as ‘equal’, ‘less than’, ‘greater than’, ‘and’, ‘or’, etc] are more commonly used in validation rules.

→ For the PTO case, we need to select the “> Greater Than” and type in the number “14” after it in the large formula field. This way, the formula reads: “the number of Total Days Off is greater than 14” and that is why the validation rule should trigger, not allowing to save the request.

✎  On a side note, numerous Functions are interchangeable with Operators, in some cases, operators won’t be necessary at all when a certain function is chosen, f.e. ISBLANK, and vice versa. What is more, it is also worth mentioning that in case you’ll need to indicate more than one criteria to be met per validation rule, you’ll need to merge them using the OR Function [find OR in the Function category and double click to select it; in the formula field, within the parentheses replace the “label 1”, “label 2”, and “…” with your formulas; when done, click on the “Check Syntax” button under the large formula field to see that everything is correct].

Step 4: Defining the Error Message & its Location

The Error Message is a mandatory field when setting up a validation rule. Importantly, this message needs to state what was done wrong, i.e. where the user made a mistake, explaining in short how to make the fix. 

→ In our PTO case, the error message is: You cannot request paid time off for more than 14 calendar days at once.

What’s for the Error Location, depending on the chosen radio button, the error message will appear either at the top of the page, in case something is wrong with the record, or right under the field that contains an invalid value. When opting for “Field”, the auto message “Error: Invalid Data” asking to correct the field will appear at the top of the record and your unique error message will appear beneath the field, highlighting its borders in red.

→ For the PTO case, we chose the location of the error message to be “Top of Page”.

Finally, press “Save”, and here’s the result:

Step 5: Testing the Rule

Finally, in order to make sure that the rule works correctly, conduct a quick test. In the PTO case, this would be an attempt to submit a vacation request for, say, 17 calendar days. And since the validation rule is set up correctly the Error Message will not let you submit the request until the number of days is equal to or less than 14.

In conclusion, validation rules can be a handy leverage for ascertaining the quality of the data which is added or modified by users. With their help, you can make sure that the input values are correct and standardized. We hope that you’ve found this post to be useful, and in case you need a hand with setup or are seeking professional Salesforce support, we’d be glad to assist!

What is the importance of validation rule?

By using validation rules, you can ensure accurate data entry [to a point]. Validation rules catch errors at the data entry level, so in effect, the mistakes never make it into your database. If the data doesn't satisfy the conditions you've set, Access won't accept the input value.

What are the rules of validation?

A validation rule can contain a formula or expression that evaluates the data in one or more fields and returns a value of “True” or “False”. Validation rules also include an error message to display to the user when the rule returns a value of “True” due to an invalid value.

What are great practices while making validation rules?

The 7 Good Practices: Run rules as narrowly as possible. Remember to notify users when there are new rules. Be careful not to create too many rules. NEVER use specific IDs in a validation rule.

What is validation rules in Salesforce with examples?

Validation rules verify that the data a user enters in a record meets the standards you specify before the user can save the record. Review examples of validation rules for various types of apps that you can use and modify for your own purposes.

Chủ Đề