hi, I'm having a bit of trouble with representing this query in Access:
SELECT tblUser.UserID, [LastName] & "," & [FirstName] AS Fullname
FROM tblUser
ORDER BY tblUser.LName, tblUser.FName;
In Query design it looks like the table below but I get an error saying that my expression has invalid syntax. Could you point out what I'm doing wrong here please? I can't seem to pick it out. Maybe been staring at the screen for too long..?
The UserID combo box only shows the LastName with the comma
Field UserID Expr:1 [LastName] & "," FullName: & [FirstName] Table tblUser
Any help is greatly appreciated!