Overview
Sentir automatically formats the names of household records to match those of household members, handling common real-world scenarios such as differing surnames, single-parent families, and spousal relationships. This default formatting ensures that client records are consistent and meaningful from the moment they are created.
For firms that prefer a specific naming style, Sentir supports a fully customizable approach. By creating a formula field on the Entity (API name: Account) object, system administrators can define a naming convention that aligns with their firm’s brand standards and client communication preferences. Whether your firm uses a format like Feldman Family, Dirk & Anya Feldman, or something entirely unique, this configuration ensures that household names appear consistently across records, reports, and client-facing materials.
Create a Custom Household Name
A formula field created on the Entity (API name: Account) object can be used to replace the default household name with a format of your firm's choosing. Within this formula, conditional "if" statement logic can support naming conventions like Dirk & Anya Feldman or Feldman Family, including scenarios where a spouse is not present on the record. Examples of formulas for different name formats are provided in the Custom Household Name Examples section below.
Before proceeding, create your formula field in Salesforce and copy its API name, as you will need it in the steps below.
To enable a custom household name, do the following:
- Navigate to the Salesforce Setup page by clicking the gear icon in the upper right-hand corner of the page and select Setup.
- Use the Quick Find on the left-hand side to search “Custom Settings” and select the Custom Settings option within the Custom Code menu. The Custom Settings page opens.
- On the Custom Settings list, click Manage next to Household Name Settings.
- On the Household Name Settings page, select the Edit button in the Action column.
- On the Household Name Settings Edit page, enter the API name of the new formula field into the Default Household Name field, then select Save.
Custom Household Name Examples
The tables below provide formula syntax that System Administrators can use to implement various household naming conventions in Sentir. These examples are written using the Salesforce formula language and can be entered directly into a formula field on the Entity object.
Common Scenarios
|
Naming convention (displayed as example) |
Salesforce formula syntax |
|---|---|
| Dirk Feldman Household | practifi__Primary_Member__r.FirstName & " " & practifi__Primary_Member__r.LastName & " Household” |
| Feldman, Dirk & Anya | N/A (existing default convention) |
| Feldman, Dirk & Anya Feldman | practifi__Primary_Member__r.LastName & ", " & practifi__Primary_Member__r.FirstName & " & " & practifi__Spouse__r.FirstName & " " & practifi__Spouse__r.LastName |
| Feldman, Dirk & Feldman, Anya | practifi__Primary_Member__r.LastName & ", " & practifi__Primary_Member__r.FirstName & " & " & practifi__Spouse__r.LastName & ", " & practifi__Spouse__r.FirstName |
| Feldman Household | practifi__Primary_Member__r.LastName & " Household" |
Alternative Scenarios
The following table outlines how to handle specific naming scenarios that may apply to certain households in your firm's book of business.
| Scenario | Handling logic |
|---|---|
| Adding salutations | Include "practifi__Primary_Member__r.Salutation &" "&" in front of the Primary Member’s first or last name as desired. Do the equivalent with Spouse. |
| Alternative terms to "Household" | Replace the word Household wherever it appears in the examples above with other terms such as Group or Family. |
| Differing surnames | N/A (not required as in all examples above other than the default, the surname is shown at all times) |
| Initials |
Use the LEFT() formula to return the first character of someone’s first name. Example: LEFT(practifi__Primary_Member__r.FirstName, 1) & ". " & practifi__Primary_Member__r.LastName returns D. Feldman |
| No spouse |
IF(ISNULL(practifi__Spouse__c), {Syntax for Naming Convention with Spouse Removed}, {Original Syntax for Naming Convention} Example:
|
| Using Preferred Name instead of First Name | Replace references to FirstName with references to practifi__Preferred_Name__c. |
Comments
Article is closed for comments.