I have a clients coordinates table (name="coordinates"
and a report (name="overview coordinates"
to print a listing.<br>The report gets its data from a query based on the coordinates table extended with some code definitions.<br><br>The listing has become too big, so I made a dialog form with 2 comboboxes, one to select the country, the other to select "client type code", so that the user can select a limited listing.<br>I added a criteria to the query that "country" and "client type code" must equal the selection on the dialog form.<br>The dialog form has an "OK" button which calls the report.<br>The report heading states the selected country and client type.<br><br>It works fine for a single selection, but my users want to be able to make multiple selections in the comboboxes.<br>I know about the multiple selection property on comboboxes which is exploited using vba, but I can't figure out the vba code to put behind the "OK" button.<br>Could anyone help pls.