Bob..
I hope I did what you suggested... I created a query with the fields I wanted to combine and then created another query with that query with the other fields, here is th sql for that:
I also did the following, created a field within the original query and used the following code:
Neither of them are working..... I am not getting any errors on the second one, but I am not getting the combo box populated either.
R~
I hope I did what you suggested... I created a query with the fields I wanted to combine and then created another query with that query with the other fields, here is th sql for that:
Code:
SELECT tblInvestigator.InvestigatorID AS tblInvestigator_InvestigatorID, tblInvestigator.InvLName, tblInvestigator.InvFName, tblInvestigator.EmpNumber, tblInvestigator.Rank, [InvLName] & ", " & [InvFName] AS InvName, qryAppFosCombo.AppFosCombo
FROM tblInvestigator INNER JOIN qryAppFosCombo ON tblInvestigator.InvestigatorID = qryAppFosCombo.InvestigatorID
WHERE (((qryAppFosCombo.AppFosCombo)=[Forms]![frmReports]![cboFOS]));
I also did the following, created a field within the original query and used the following code:
Code:
SELECT qryAppandFOS2.FosApp, [FosApp] AS FOSName FROM qryAppandFOS2;
Neither of them are working..... I am not getting any errors on the second one, but I am not getting the combo box populated either.
R~