A family of Microsoft relational database management systems designed for ease of use.
For an example of the solution suggested by Tom you might like to take a look at my demo file at:
The demo is principally intended to show how to use 'correlated combo boxes', i.e. where the selection in one combo box restricts the selection in another and so on down the line, but it does include a form, opened from the 'Open Form in Continuous Form View Using Multi-Column Combo Box and Text Boxes' button on the opening form, which shows the values of three columns after selection from a combo box.
One thing to note when doing this is that the Column property is zero-based, so Column(1) is the second column from a combo box's RowSource, and so on.
This method is more appropriate where the columns represent disparate attribute types. Where they are separate elements in a combined attribute, as in Karl's example, concatenating the values into a single column is often a better solution, e.g. for a combo box bound to an EmployeeID column you might set it up as follows:
RowSource: SELECT EmployeeID, FirstName & " " & LastName FROM Employees ORDER BY LastName, FirstName;
BoundColumn: 1
ColumnCount: 2
ColumnWidths: 0cm;8cm
If your units of measurement are imperial rather than metric Access will automatically convert the last one. The important thing is that the first dimension is zero to hide the first column and that the second is at least as wide as the combo box.
The above would list the employee names alphabetically by last then first name, in the format Ken Sheridan, and show the selected employee name in the same format.