Can't believe I have to bother you guys with this, but after 12 Google searches (and 12 failed explanations)... here I am...
Simple as heck (for you guys, I'm sure)...
My table called: tbl_Employees has two fields: First_Nm and Last_Nm and what I am trying to accomplish is to populate my ComboBox with both the first & last name
I have tried several versions of the code below
Code:
SELECT [First_Nm] & " " & [Last_Nm] FROM tbl_Employees ORDER BY tbl_Employees[First_Nm]
Thank you so much for helping out...