D
Doc
Attempting to populate a combo box from an SQL server with multiple fields.
Returns fields with all empty spaces.
Example:
SELECT dbo_tblPeople.IDPeople, [LName] & ", " & FName & " " & MName as Name
FROM dbo_tblPeople
Sample Data Returned:
"Doe , John A."
Would like:
"Doe, John A."
I've used Allen Brownes suggestion using the 'Replace()' command, which
works, but I'm hoping for something as simple as a modification to the 'Row
Source'.
Thanks!
Returns fields with all empty spaces.
Example:
SELECT dbo_tblPeople.IDPeople, [LName] & ", " & FName & " " & MName as Name
FROM dbo_tblPeople
Sample Data Returned:
"Doe , John A."
Would like:
"Doe, John A."
I've used Allen Brownes suggestion using the 'Replace()' command, which
works, but I'm hoping for something as simple as a modification to the 'Row
Source'.
Thanks!