STRING_APPEND

Description

Appends an item to an existing string, with the separator placed between them.

Syntax

STRING_APPEND(existing_string, item, separator) -> String

Parameters

ParameterData TypeRequiredDescription
existing_stringStringYesThe string to append to.
itemStringYesThe string to append.
separatorStringYesThe delimiter placed between the existing string and the item.

Example

STRING_APPEND(ProductOfInterest__c, "Analytics", ";")
-- Returns "CRM;Marketing Automation;Analytics" when ProductOfInterest__c contains "CRM;Marketing Automation".

Related Formula