hello friends
I am to ms access . I have a table with three columns ID, Fname , Lname . I have created a form in designer with sub form with three combo boxes bound to that table. I want to populate Fname , Lname when I select ID field . I have placed the query into row source of a combo box When I click the drop down arrow it just shows both columns .
Can someone tell me how to do this?
Thanks
I am to ms access . I have a table with three columns ID, Fname , Lname . I have created a form in designer with sub form with three combo boxes bound to that table. I want to populate Fname , Lname when I select ID field . I have placed the query into row source of a combo box When I click the drop down arrow it just shows both columns .
SQL:
SELECT Fname & "" & Lname FROM Table1 ORDER BY Fname, Lname;
Can someone tell me how to do this?
Thanks