G
Guest
I have an issues database where I have a field called ‘Responsibility’ that
is set as a Number format and then the following Lookup is set to return the
First & Last Name of the person who is responsible for the issue:
SELECT Contacts.ID, Contacts.[First Name] & " " & Contacts.[Last Name] AS
Expr1 FROM Contacts ORDER BY Contacts.[Last Name];
This works fine in the forms and when creating the reports I have the
ControlSource set as the ‘Responsibility’ field. However, I know this is
wrong as it returns the Number allocated to the person responsible rather
than their first and last name. Can anyone suggest the correct expression
that I should have in the ControlSource to return the name rather than a
meaningless number?
is set as a Number format and then the following Lookup is set to return the
First & Last Name of the person who is responsible for the issue:
SELECT Contacts.ID, Contacts.[First Name] & " " & Contacts.[Last Name] AS
Expr1 FROM Contacts ORDER BY Contacts.[Last Name];
This works fine in the forms and when creating the reports I have the
ControlSource set as the ‘Responsibility’ field. However, I know this is
wrong as it returns the Number allocated to the person responsible rather
than their first and last name. Can anyone suggest the correct expression
that I should have in the ControlSource to return the name rather than a
meaningless number?