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
Raghu_devRaghu_dev 

Forcing Multiline in a Text Area (long)using formula

Hi,

Does anyone had this requirement. If yes, please help me. And btw, I am kind of new to SFDC.

I need to show a custom field on the account page layout which should default the value to following.

"Sale Number # "
& "Amount $ "
& "One-Times $ "
& "Terms of Sale "
& "Cashier's check?___ "
& "Credit Card?___ "

That sounds simple right ? But I need them in multiline.. like below

Sale Number #
Amount $
One-Times $
Terms of Sale
Cashier's check?___
Credit Card?___

I tried "\n" but didnt help.

Thanks
Best Answer chosen by Admin (Salesforce Developers) 
jpizzalajpizzala
First of all, to avoid your question :smileyvery-happy: What is the advantage of combining all 6 of those values into one field as opposed to creating 6 different fields? With the fields separated, you will enforce stricter data integrity and also open up more reporting possibilites.

Secondly, if you really do want all of those "field labels" inside one single field with line breaks, you can use BR():

'Sale Number # ' & BR() & 'Amount $ ' & BR() & 'One-Times $ ' & BR() & 'Terms of Sale ' & etc.

All Answers

jpizzalajpizzala
First of all, to avoid your question :smileyvery-happy: What is the advantage of combining all 6 of those values into one field as opposed to creating 6 different fields? With the fields separated, you will enforce stricter data integrity and also open up more reporting possibilites.

Secondly, if you really do want all of those "field labels" inside one single field with line breaks, you can use BR():

'Sale Number # ' & BR() & 'Amount $ ' & BR() & 'One-Times $ ' & BR() & 'Terms of Sale ' & etc.
This was selected as the best answer
Raghu_devRaghu_dev
Thank you. It did work.

And btw, thanks for the suggestion. Those were just the field values that are temporary (will be wiped out when the other department approves them) and will not have any impact on the business or report.


Thanks
Raghu