function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
cactusdavecactusdave 

Carriage Returns in a validation rule - How is this done

I am trying to get my error message on a validation rule to look like the following:

 

CONTACT ALERT 

The contact information entered have the email domain of a competitor!! 

Please transfer caller to the Broker Queue: x8742

 

I have tried unsuccesfully to do this by adding HTML elements (<br> tags):

CONTACT ALERT <br>
The contact information entered have the email domain of a competitor!! <br>
Please transfer caller to the Broker Queue: x8742

This seems to not recognize what I am doing and displaying this all in one row:

CONTACT ALERT <br> The contact information entered have the email domain of a competitor!! <br> Please transfer caller to the Broker Queue: x8742

Does anyone have any advise on how I have the error message within the validateion rule display a message with line breaks / carriage returns? Thanks!