1. Home
  2. Contacts
  3. Creating a Contact List

Creating a Contact List

TrueDialog Logo

TrueDialog Portal

Contacts > Contact Lists

A Contact List is a filtered list of your contacts. In this guide, you will learn how to create two different contact lists, one simple and one complex. The list filtering can be as straightforward or complex as needed for your application.

How to edit a Contact List?
Click the Contact List Name of the Contact List you wish to edit. This brings up the same window as creating a new Contact List. See the instructions below for examples of how to use this window. The Managing Contact Lists article has more details on managing contact lists.

Create a Contact List

  1. Expand Contacts in the left sidebar and select Contact Lists.
    Navigate to Contact Lists Page
  2. Click New List to open a form to create a new contact list.
    Click New List
  3. Enter a name for your contact list in the Contact List Name.
    Enter a Name For The Contact List

Simple Contact List Example

This example will show you how to create a contact list containing only contacts with a first name. The following SQL query shows the search the contact list will perform in this example.

SELECT *
FROM Contacts
WHERE `First Name` IS NOT NULL;
  1. Click the first dropdown and select First Name.
    Simple Contact List Criteria Step 1
  2. Click the second dropdown and select is not empty.
    Simple Contact List Criteria Step 2
  3. Click Create.
    Create Simple Contact List
  4. After creating the contact list, a success message will appear in the upper right corner.
    Successfully Created
  5. (Optional) To view the number of contacts in your contact list, click on the Get Count option and select Total from the dropdown list. The total count will be displayed, which can be compared with the expected count to ensure that your contact list has been created correctly. See the Managing Contact Lists article for an explanation of each of the Get Count options.
    Click Get Count

Advanced Contact List Example

This example demonstrates creating a complex contact list using the Criteria, Group, and Select features. Please see the first example for more detailed information on creating individual criteria.

Criteria 

This is an individual filter parameter. A contact list is made up of one or more criteria.

Group 

A Group is a collection of one or more criteria and can be thought of as parentheses around the criteria. You can nest groups inside other groups to create more complex filters. A contact list consists of one or more groups.

Select 

This is the operation performed on a group of criteria or between multiple groups. The All operator is equivalent to AND, and the Any operator is equivalent to OR. 

The following SQL query shows the search the contact list will perform in this example.

SELECT *
FROM Contacts
WHERE (`First Name` LIKE 'J%' OR `Last Name` LIKE 'D%')
AND (Phone IS NOT NULL AND Email LIKE '%gmail.com');
  1. Click the first dropdown and select First Name.
  2. Click the second dropdown and select begins with.
  3. In the text box at the end of the row, enter J.
    Advanced Contact List Step 1
  4. Next, click the green +criteria button to create another criteria line.
    Advanced Contact List Step 2
  5. Click the Select dropdown and select Any to change the logic operator from AND to OR.
    Advanced Contact List Step 3
  6. Click the first dropdown and select Last Name.
  7. Click the second dropdown and select begins with.
  8. In the text box at the end of the row, enter D.
    Advanced Contact List Step 4
  9. Next, click the blue +group button to add another group section.
    Advanced Contact List Step 5
  10. Click the first dropdown and select Phone.
  11. Click the second dropdown and select is not empty.
    Advanced Contact List Step 6
  12. Next, click the green +criteria button to add another criteria line to this group.
    Advanced Contact List Step 7
  13. Click the first dropdown and select Email.
  14. Click the second dropdown and select ends with.
  15. In the text box at the end of the row, enter gmail.com.
    Advanced Contact List Step 8
  16. Click Create.
    Create Advanced Contact List
  17. After creating the contact list, a success message will appear in the upper right corner.
    Successfully Created
  18. (Optional) To view the number of contacts in your contact list, click on the Get Count option and select Total from the dropdown list. The total count will be displayed, which can be compared with the expected count to ensure that your contact list has been created correctly. See the Managing Contact Lists article for an explanation of each of the Get Count options.
    Click Get Count
Updated on January 18, 2025
Was this article helpful?
Need Support?
Can’t find the answer you’re looking for? Don’t worry we’re here to help!
CONTACT SUPPORT

Leave a Comment