Deduplication
How can I merge records that arenât automatically flagged as duplicates?
How can I merge records that arenât automatically flagged as duplicates?
If Element451 doesnât flag a duplicate record, you can manually search for and merge it. Use the âSee Possible Duplicatesâ icon in the record header to compare it against your contact list and merge any identified duplicates. If you donât see this icon, it may need to be added to your profile template.
For detailed steps, check out our help article: Merging Duplicate Records.
Filters + Segments
How can I create a segment to find records with no custom activities?
How can I create a segment to find records with no custom activities?
Because custom fields can either exist with a value, exist but be empty, or not exist at all, filtering for records with no custom activities requires a combination of operators. Using only âNot Inâ may exclude records where the field doesnât exist in the database.
To ensure accurate results, youâll need to combine âNot Inâ with âDoes Not Existâ when building your segment. This approach accounts for both empty and missing values.
For a full breakdown of custom field behavior and step-by-step guidance, visit our help article: Filtering Custom Fields in Segments.
Is there a way to segment students based on issues with name format?
Is there a way to segment students based on issues with name format?
You can use regular expressions (regex) in segment filters to identify name formatting issues in student records.
When adding a First Name or Last Name filter in Element451, select the REGEXP operator and enter a regex pattern to match specific issues.
Here are some common patterns you can use:
All caps names:
^[A-Z\s]+$
Example Match: "JOHN DOE"
Names with numbers:
[0-9]
Example Match: "J0hn"
Names with special characters:
[^a-zA-Z'\-\s]
Example Match: "J@hn" or "Doe#"
Names with leading or trailing spaces:
^\s+|\s+$
Example Match: " John" or "Doe "
Names with double spaces between words:
\s{2,}
Example Match: "John Doe"
Mixed capitalization (e.g., âjOHN dOEâ):
\b[a-zA-Z]*[A-Z][a-z]*\b
Example Match: "jOHN" or "doE"
Names missing vowels (possible typos):
\b[b-df-hj-np-tv-z]{3,}\b
Example Match: "Jhn" or "Brt"
First letter not capitalized:
\b[a-z]
Example Match: "john" or "doe"
How do I add a person to a segment?
How do I add a person to a segment?
Segments are built using filters, so you cannot manually add individuals. A person will appear in a segment only if they meet the defined segment criteria.
If the segment is non-calculated (meaning it doesnât update dynamically as student data changes), you can refresh it by:
Open the segment.
Click the "Apply" button to reapply the filters and update the data.
Saving your changes by selecting either:
"Save" to overwrite the existing segment.
"Save as New Segment" to create a new version without overwriting the original.
Can I segment contacts by conversation tags?
Can I segment contacts by conversation tags?
No, the People module does not have a filter for segmenting contacts by conversation tags. However, you can use the conversation tag filter in the Conversations module to refine your inbox view.
Why can't I filter by (or find) a specific custom field?
Why can't I filter by (or find) a specific custom field?
If your custom field is a text area field, it wonât appear in the filter list because text area fields are not supported for filtering.
Iâm using the Date of Inquiry filter, and a student doesnât appear in my segment even though their date matches. Why?
Iâm using the Date of Inquiry filter, and a student doesnât appear in my segment even though their date matches. Why?
Date filters in segments use 12:00 PM UTC as the cutoff timeâso itâs not just the date that matters, but also the timestamp behind it.
For example, if youâre filtering for âDate of Inquiry on or after 5/2,â and a studentâs Date of Inquiry is 5/2 at 9:15 AM UTC, they wonât be included. Thatâs because their timestamp is before the 12:00 PM UTC threshold applied to the filter.
Try adjusting the filter to âon or after 5/1â to catch records like this.
We know this can be confusing, and weâre exploring ways to improve it.