S
Stephen Glynn
I'm trying to adapt some code I've found at
http://www.databasedev.co.uk/filter_combo_boxes.html
to filter a combo box selection on the basis of another combo box
selection.
I've got it working but I'd like to concatenate [Contacts].[FirstName]
and [Contacts.LastName]. I know how to do it in an ordinary query, but
how do I do it when I'm writing the SQL in code? FullName AS
[Contacts].[FirstName]&" "&[Contacts.LastName] doesn't work, I suspect
because I should somehow escape the '&" "&'.
Can anyone advise, please?
Steve
http://www.databasedev.co.uk/filter_combo_boxes.html
to filter a combo box selection on the basis of another combo box
selection.
I've got it working but I'd like to concatenate [Contacts].[FirstName]
and [Contacts.LastName]. I know how to do it in an ordinary query, but
how do I do it when I'm writing the SQL in code? FullName AS
[Contacts].[FirstName]&" "&[Contacts.LastName] doesn't work, I suspect
because I should somehow escape the '&" "&'.
Can anyone advise, please?
Steve