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
sahiti@sfdcsahiti@sfdc 

What does this line of code in formula field means: Can any one breakdown and explain?

Account.Name & ": " & Name
 
NagendraNagendra (Salesforce Developers) 
Hi Sahiti,

Could you please confirm if it is Account.Name & ": " & Name or Account.Name & ": " & FirstName.

If it is Account.Name & ": " & FirstName then it will refer to the name of the account and its first name.

Please let us know if you have any further queries.

Hope this helps.

Kindly mark this as solved if the reply was helpful.

Thanks,
Nagendra
 
Raj VakatiRaj Vakati
The Syntax it self is worng ..it should be 
 
Account.Name  +'&:&'+  Name

 
Kamal ThakurKamal Thakur
@Raj The syntax is not wrong. You might want to check the concatenation in Salesforce Formula Fields.