Question : Combining SQL statements to use in one row source

Good Day Experts,

I have a search tool in which I would like to combine code(attached) to use in one row source in hope that it returns the related information (mostly names) from the tables into one field per the record when selected.  Is it possible?

Any assistance or insight you can provide would be great.

Thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
SELECT tblBenefitsEmployee.EmployeeID, tblBenefitsEmployee.LastName & ", " & [FirstName] AS Expr1
FROM tblBenefitsEmployee
ORDER BY tblBenefitsEmployee.LastName & ", " & [FirstName], tblBenefitsEmployee.FirstName
WITH OWNERACCESS OPTION;

SELECT tblQAassigned.QAassignedID, tblQAassigned.LastName & ", " & [FirstName] AS Expr1
FROM tblQAassigned
ORDER BY tblQAassigned.UpdateSequence, tblQAassigned.LastName & ", " & [FirstName]
WITH OWNERACCESS OPTION;

SELECT tblCOMQAassigned.COMQAassignedID, tblCOMQAassigned.LastName & "," & [FirstName] AS Expr1
FROM tblCOMQAassigned
ORDER BY tblCOMQAassigned.UpdateSequence, tblCOMQAassigned.LastName & "," & [FirstName]
WITH OWNERACCESS OPTION;

SELECT tblMCOQAassigned.MCOQAassignedID, tblMCOQAassigned.LastName & "," & [FirstName] AS Expr1
FROM tblMCOQAassigned
ORDER BY tblMCOQAassigned.UpdateSequence, tblMCOQAassigned.LastName & "," & [FirstName]
WITH OWNERACCESS OPTION;
Attachments:
 
Search tool
Search tool
 

Answer : Combining SQL statements to use in one row source

Random Solutions  
 
programming4us programming4us