I have two tables. One is tbl_members (id, names, phone numbers, address). Another table is tbl_positions (id, member_id, position).
In this organization each member has held various positions over the years.
On the list view for the members I would like to pull in the data from tbl_positions for each member and show it as a list.
I tried going the easy route - link the tables together and auto create a link on the member list that says "positions (2)" which you can mouseover or click to see the positions they held. This is too confusing for the users.
Robert