I am needing to create a report between two tables. One table has ID, FirstName, LastName. The seconded table has NoteID, ID and Notes. There is a one to many relationship. Each person can have many notes. What I would like to do is fill a listbox or textbox with the notes that belong to that person.
On that note, how can I create a report that will display somewhat as the following:
First Name: Jeff Last Name: Smith
Notes:
This is note 1 for Jeff Smith
This is note 2 for Jeff Smith
This is note 3 for Jeff Smith
This is note 4 for Jeff Smith
First Name: Kim Last Name: Yung
Notes:
This is note 1 for Kim Yung
This is note 2 for Kim Yung
Thank you for any thing on this to lead me in the right direction.