Hello,
To expand on the subject line, I am trying to open a recordset which will have two fields concatenated together with a space between them. I understand why the code is getting a syntax error but I'm not sure the proper syntax on how to get a " " space. Here is what I'm trying so far:
Obviously this syntax doesn't work, but again, I'm not sure on what the correct syntax would be.
For a record whose FirstName = "John" and whose LastName = "Doe", I want to see "John Doe"
Thanks in advance!
~Melagan
______
"It's never too late to become what you might have been.
To expand on the subject line, I am trying to open a recordset which will have two fields concatenated together with a space between them. I understand why the code is getting a syntax error but I'm not sure the proper syntax on how to get a " " space. Here is what I'm trying so far:
Code:
SQLText = "SELECT FirstName & " " & LastName AS Full FROM tblAgents"
Obviously this syntax doesn't work, but again, I'm not sure on what the correct syntax would be.
For a record whose FirstName = "John" and whose LastName = "Doe", I want to see "John Doe"
Thanks in advance!
~Melagan
______
"It's never too late to become what you might have been.