Another question. If anyone can give me some guidance I'd reallt appreciate it
as I'm now going round in circles.

I've got 12 checkboxes in a submit form. A user can check or uncheck any
number of them. On submit the results (true or false) get passed to the results
page.
I now want to create a query/recordset where only those fields where request
variables which are true get included. i.e in this example:
Recordset1.Source = "SELECT * FROM Table2Directory WHERE Country = '" +
Replace(Recordset1__MMColParam, "'", "''") + "' should then have AND fields
only where the variables have shown the request for that field to be returned
is true.
Does this make sense?
Dave