
Originally Posted by
Dal Jeanis
You don't need to have two bound columns to accomplish that. You use one field bound to the boundcolumn (county), and in the afterupdate event of the combo box, you set the value of a text box that's bound to the other field (section).
However, what you are doing is a violation of normalization. Since county uniquely determines both the county abbreviation and the section, you should have the correlation in a second table (which you already apparently do) and then join that table when you need it, rather than storing redundant data in the underlying data table. If county abbreviation is not unique, which it probably isn't, then you should have a primary key, and store that in the data, rather than the county name, section name, and county abbreviation.