M
Mike Diamond
I have a query where i am trying combine multiple records of a particular
field into a single record.
eg. instead of;
Record 1
AB
Record 2
CD
Record 3
EF
I want to have;
Record 1
AB, CD, EF
The tables i am using within the query are;
tblStaffMembers;
StaffID
StaffTitle
StaffFirstName
StaffSurname
Abbreviation
tblTeamInternal
IntTeamID
SubmissionID
StaffID
Depending on the values of [tblTeamInternal].[StaffID], i would like to
combine the associated Abbreviation values in tblStaffMembers using a query.
Currently i have all associated fields in the query and have created an
additonal field which uses the expression - Team: Concatenate("SELECT
Abbreviation FROM tblStaffMembers WHERE StaffID =" & [tblTeamInt].[StaffID]).
This is not working for me first of all because i am getting an undefined
function dialog popping up and am not sure whether i have the correct
expression.
Can anyone assist at all?
Regards
Mike
field into a single record.
eg. instead of;
Record 1
AB
Record 2
CD
Record 3
EF
I want to have;
Record 1
AB, CD, EF
The tables i am using within the query are;
tblStaffMembers;
StaffID
StaffTitle
StaffFirstName
StaffSurname
Abbreviation
tblTeamInternal
IntTeamID
SubmissionID
StaffID
Depending on the values of [tblTeamInternal].[StaffID], i would like to
combine the associated Abbreviation values in tblStaffMembers using a query.
Currently i have all associated fields in the query and have created an
additonal field which uses the expression - Team: Concatenate("SELECT
Abbreviation FROM tblStaffMembers WHERE StaffID =" & [tblTeamInt].[StaffID]).
This is not working for me first of all because i am getting an undefined
function dialog popping up and am not sure whether i have the correct
expression.
Can anyone assist at all?
Regards
Mike