aussie_user
Registered User.
- Local time
- Today, 12:58
- Joined
- Aug 6, 2002
- Messages
- 32
I have a database with several tables. I have ID fields for most of my tables. In my main table I have a field called GranteeID. Rather than have the ID number appear in the table I would like the Grantees LastName and FirstName to appear. At prestent in the Row Source box I have keyed in
SELECT DISTINCTROW [GranteeID], [FirstName] & " " & [LastName] FROM Grantees ORDER BY [LastName];
When I look at the Datasheet view of my table, it shows the combined names in a dropdown box however no matter which name I choose, none can be selected.
Can anyone tell me what is wrong with the syntax of my expression?
Thanks for any help.
SELECT DISTINCTROW [GranteeID], [FirstName] & " " & [LastName] FROM Grantees ORDER BY [LastName];
When I look at the Datasheet view of my table, it shows the combined names in a dropdown box however no matter which name I choose, none can be selected.
Can anyone tell me what is wrong with the syntax of my expression?
Thanks for any help.