Jump to content

Portal Relating to two different tables & multiple criteria


Donkick

This topic is 4746 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I'm trying to create a portal on my "incoming mail" layout that includes all "active" jobs related to the current email of "[email protected]"

It's trickier than it sounds at first glance...

Here are the 3 tables I'm working with.

-Client Emails = [email protected] (each email may be associated with multiple clients; example: John Doe & Jane Doe)

-Clients = John Doe (each client may have multiple emails; Example: [email protected] & [email protected])

-Jobs = "active" or "inactive" (each Job relates to a single client)

Link to comment
Share on other sites

Your right, the emails are not related to more than one client.

However, the same email may occur within multiple clients.

Example

John Doe could have two related emails, [email protected] & [email protected] (these are only related to John Doe)

Jane Doe could have just one related email, maybe she uses john's home email address, [email protected] (this email is only related to Jane Doe)

Let me know if you need further explaination.

Link to comment
Share on other sites

Well, if the relationship between Emails and Clients is based on matching e-mail address then all the king's horses will not be able to decide between John Doe and Jane Doe as the sender.

You could add a calculation field to the Emails table like =

Case ( IsEmpty ( ClientID ) ; List ( Clients::ClientID ) ; ClientID )

and use it as the matchfield to Jobs. In the current example, the portal to Jobs would show jobs of both John Doe and Jane Doe - until you select one of them and enter their ID into the ClientID field.

Link to comment
Share on other sites

This topic is 4746 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.