Well, you see, here's the thing; this small form just has three controls on it. (I forgot to mention the Command button) First, the ComboBox with the drop-down list of 435 names. A command button that read "Go to Record" and the standard navigation buttons at the form footer. When the Command button is pressed, it opens a large, detailed form with all the record's fields (drawn from three different tables) for editing, etc. to be performed there. Basically, the small form with the Combobox, Command Button and Navigation button is only intended to point to a certain Name (record). Technically, it should work by itself, but it doesn't well. If you select a record via the navigation buttons, (say record number '231') and click the Command button (Go to Record) it opens the large form. That's fine, but the large form already has that capability. I want the ComboBox's selected value to reflect the number in the navigation buttons so when I click 'Go to Record' the large form (filtered) will open that record. It's already filtered, it already works (when selecting from the navigation buttons on the small form) the problem seems to be 'tieing' the list of Names in the ComboBox with the navigation buttons. The names themselves are not unique, but each name is linked to a separate field called 'MasterID' which -is- unique. Do you think by including 'MasterID' on the form (hidden perhaps) that will clear up the problem?