How do I join fields in a table to display in an imput field of a form. ie: employess name from table with 3 fields, title, fname, lname.
One thing you could do, to keep it simple, is just put a:<br><br>SELECT DISTINCTROW
.[Field1],
.[Field2] FROM<br>
<br><br>Put that into the 'Row Source' properties of the combo box and it will create two rows. The first of which will contain data from 'Field1', and the second containing data from 'Field2'. You will have to play around with the column count, and the column and list widths to make this look nice though. I'm sure it's not optimal, but like I said it's fairly simple. Good luck! =D
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.