I have a table of imported data, Group Emails. Many records have the same GroupEmail field values. Within a GroupEmail value, many records contain a MemberEmail field with various values. Our existing Person table also includes each person’s EmailAddress.
I want to connect the GroupEmails table to the Person table where the GroupEmails.MemberEmail equals the Person.EmailAddress so I can display the Person.FirstName and Person.LastName when viewing the GroupEmails table data.
I have connected GroupEmails to Person in a many-one connection since many GroupEmail records will map to a single Person. But beyond that, I am stumped. How do I specify exactly how to make this connection? I am working in Next Gen.
I have searched and read many pages in the docs and community forum, but have found nothing that addresses this.