This topic is locked

Row Source Display

1/22/2007 4:02:06 PM
ASPRunnerPro General questions
C
cyardley author

In my Access database I have a row in my table that is linked to another ID in a different table. I have that row display a combo of the user name. It is setup as follows:
SELECT Employees.EmployeeID, [LastName] & ", " & [FirstName] AS Expr1

FROM Employees

ORDER BY [LastName] & ", " & [FirstName];
The statement above displays the Employees LastName, FirstName.
However, it doesn't seem like I can get that to work in ASPRunner. When I view it in Internet Explorer it does not show the Employee Name, it shows just the ID number. Is there a way that I can get it show the names?

Sergey Kornilov admin 1/22/2007

Chuck,
what you have setup in MS Access works in Access only.
You need to set "Edit as" type of EmployeeID field to Lookup Wizard, point it to Employees table and use Custom Expression to display both First and Last names.

[LastName] + ', ' + [FirstName]
C
cyardley author 1/25/2007

That worked! Thanks!