When creating a Combo Box there is a property called "Bound Column" which is the field that it uses to retrieve information. What if you need more than one column to uniquely identify the record to retrieve information from. For example, we update recipes for products, but need to retain the old recipe info to the records for batches we've already made can be accurately reported. Hence I have the same product description but a different "Version". So I want to create a combo box lookup that I pick the product and version, and both of them become present in the batch record so it will pull the right recipe data. I can easily get them both to show up in the drop down list, but it only cares about the one specified in the 'bound column' property. Is there an easy way to get it use both as the criteria?