I have a combobox in a form which I want to display/select a list of full names of a person. The names are currently in a table called tblnames which includes the fields, idnumber, firstname, lastname so somehow I have to concatenate the two name fields, display them in the combobox and select them so this can be used in a filter in a query (which also has these two fields concatenated into one 'fullname' field).
i Tried putting this:
=[tblnames]![FirstName] & [tblnames]![LastName]
in the control source file of the combobox and the row source is set to 'tblnames' but the combobox just displays the first 4 columns of 'tblnames' (I set the column count to 4).
So, why isn't this working and is there a better 'good practice' approach to achieve what I need?