Skip to main content

📌 People: Frequently Asked Questions

This article answers commonly asked questions about People, providing quick solutions and key insights.

Michael Stephenson avatar
Written by Michael Stephenson
Updated this week
Pardon our progress as we actively develop this article.

Deduplication

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?

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.

How can I create a segment of contacts who haven’t received a specific email?

Element451 does not currently support direct filtering for activity that did not occur (such as an email not being received). However, you can achieve this through a simple workaround: you’ll need to label those contacts who did receive the email and then filter them out using that label.

  1. Create a Segment of Those Who Received the Email:

    • Go to Contacts > People.

    • Click Add Filter.

    • Choose the Received Email filter and specify the email you want to track.

    • Save this segment (e.g., “Received FAFSA 2025 Email”).

  2. Create a New Label:

    • Go to Contacts > Categories > Labels.

    • Add a new label and give it a name that identifies it with the email (e.g., “FAFSA 2025 Email").

  3. Apply the Label to the Segment:

    • Go to Contacts > Segments.

    • Locate your new Segment.

    • Click the more icon (three vertical dots) at the end of the row.

    • Select "Add Labels" from the menu.

    • This will bulk-apply the label to each student’s profile within the segment.

  4. Create a New Segment to Exclude Those Contacts:

    • Go back to Contacts > People.

    • Click Add Filter.

    • Use the User: Labels filter to exclude the list you created.

    • If you want to filter this list further (e.g., only transfer students, a specific enrollment year, or academic program), be sure to add those filters now. This ensures you’re only capturing those who didn’t receive the email and also meet your specified criteria.

  5. Save This as Your “Not Received” Segment:

    • Save this segment as “Not Received Specific Email,” which will now contain only those contacts who did not receive the email.

    • The segment will now contain only those contacts who did not receive the specified email and match any additional criteria you applied.
      ​

How can I create a segment of contacts by conversation tags?

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.

How can I create a segment of contacts 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 can I create a segment based on multiple area codes?

To create a segment for multiple area codes, follow these steps:

  1. Use the Phone (All Properties) filter.

  2. Select Has → Number → Starts With.

  3. Enter the area code (e.g., 212).

  4. Add additional area codes by clicking Add Filter, repeating the same steps, and grouping them with the Any operator.

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:

  1. Open the segment.

  2. Click the "Apply" button to reapply the filters and update the data.

  3. 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.

Why are no records found when I filter by source code (alias)?

When filtering by source code, you should always use the Alias List filter.

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?

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.

Did this answer your question?