Jump to content
Server Maintenance This Week. ×

Summarizing related records without using a portal?


Seeker4

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

Recommended Posts

Not sure what the right forum for this question is, but here goes.

 

I am developing a home owner association solution.  I have tables for homeowners and addresses, each with uids so I can relate them.  That's all working.

 

Now I want to add support for mailing lists.  An address may be in one or more mailing lists.  The relationship between addresses and mailing lists is many-to-many so I have created a join table containing address uid and mailing list uid.

 

When  I display a homeowner I display all their addresses (may be more than one) in a portal.  For each address I want to display a list of mailing list names that address is on.  E.g., "ListA, ListB, ListX" if on those three lists.  This would be a read-only text field listing the mailing list names and would not be editable.

 

Is there a way to make a calculated field in the Address record that is a summary of the linked-to mailing list names?  Or what would be a good approach to achieving this appearance?

 

Thanks!

 

Link to comment
Share on other sites

The relationship exists, regardless if there is a portal or not.

 

If you have Addresses --< JoinTable >-- MailingLists

 

then a calc field in Addresses defined as

Substitute ( List ( MailingLists::mailingListName ) ; ¶ ; ", " )

would give the desired result, i.e. a string of the mailing lists the address is in. 

Link to comment
Share on other sites

This topic is 3583 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.