I have a database that lists projects [tblEngagementData] and the team members assigned to the projects [tblJoin_Engagement_ProjectTeam].
There is a one to many relationship between the Projects and the Team Members tables.
I have created a report that lists each project with a subreport that lists the related team members based on the [strEngagementID] field.
I am looking for a way to make the data display cleaner on the report. In the current format there is a lot of white space since there is a row for each team member.
What I would like to do is find a way to concatenate the related Team Members into one list with commas separating the names (see example below).
Does anyone have any suggestions on how to do this?
Current View:
ID Project Team Members
-- ------- ------------
01 PD Support Jan Smith
Sara Jones
Fred Martin
Alan Choi
David Ni
02 SPD Support Sara Jones
Fred Martin
Greg Long
David Ni
Desired View:
ID Project Team Members
-- ------- ------------
01 PD Support Jan Smith, Sara Jones, Fred Martin, Alan Choi, David Ni
02 SPD Support Sara Jones, Fred Martin, Greg Long, David Ni
There is a one to many relationship between the Projects and the Team Members tables.
I have created a report that lists each project with a subreport that lists the related team members based on the [strEngagementID] field.
I am looking for a way to make the data display cleaner on the report. In the current format there is a lot of white space since there is a row for each team member.
What I would like to do is find a way to concatenate the related Team Members into one list with commas separating the names (see example below).
Does anyone have any suggestions on how to do this?
Current View:
ID Project Team Members
-- ------- ------------
01 PD Support Jan Smith
Sara Jones
Fred Martin
Alan Choi
David Ni
02 SPD Support Sara Jones
Fred Martin
Greg Long
David Ni
Desired View:
ID Project Team Members
-- ------- ------------
01 PD Support Jan Smith, Sara Jones, Fred Martin, Alan Choi, David Ni
02 SPD Support Sara Jones, Fred Martin, Greg Long, David Ni