D
Dan231
I have a table which has First Name and Last Name as fields. I have another
table used for problems that references this into 1 field called FullName.
The properties for this is a combobox and the row source is: SELECT
[EmployeeID], [LastName] & ", " & [FirstName] FROM Employees ORDER BY
[LastName] & ", " & [FirstName];
Now I am trying to create a report from the Problems table that will only
show open problems. I did this by creating a query. The query is correct .
My problem is with the actual report. Instead of listing the Name field, it
is returning the table ID#. I have no idea what the problem is.
This report was working fine until I changed the FullName field from just
last name to First and Last name. Any suggestions?
table used for problems that references this into 1 field called FullName.
The properties for this is a combobox and the row source is: SELECT
[EmployeeID], [LastName] & ", " & [FirstName] FROM Employees ORDER BY
[LastName] & ", " & [FirstName];
Now I am trying to create a report from the Problems table that will only
show open problems. I did this by creating a query. The query is correct .
My problem is with the actual report. Instead of listing the Name field, it
is returning the table ID#. I have no idea what the problem is.
This report was working fine until I changed the FullName field from just
last name to First and Last name. Any suggestions?