You need to sign in to do that
Don't have an account?
Raghu_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
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
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
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.
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