I'm trying to concatenate a name so it is Last name, First Name using the following:
SELECT 1STARTRequestLog.LastName & ", " & 1STARTRequestLog.FirstName AS [LNameFName]
Of course, it doesn't like the comma between the quotes: & ", " &. My question is how to get around that???
Thanks much...