Loading
Prepare for Email to Become the Default Login ExperienceRead More
Extend Salesforce with Clicks, Not Code
BR

BR

Inserts a line break in a string of text.

Use

BR()

Tips

  • Don't remove the parentheses after the function name.
  • Keep the parentheses empty. They don't contain values.
  • Remember to surround the BR() with concatenation operators: & or +.
  • Avoid using this function in mail merge templates.
  • This function isn't available in custom buttons and links, s-controls, or reports.
Formula Example
Formula Example
CASE(ShippingCountry, 
"USA", 
  ShippingStreet & BR() &
  ShippingCity & ", 
  " & ShippingState & " " & 
  ShippingPostalCode & BR() 
  & ShippingCountry, 
"France", 
  ShippingStreet & BR() & 
  ShippingPostalCode & " " & 
  ShippingCity & BR() & 
  ShippingCountry, "etc")

This formula field displays a formatted mailing address for a contact in standard format, including spaces and line breaks where appropriate depending on the country.

 
Loading
Salesforce Help | Article