> Please help - I am sure the answer to this is soooo easy
> but I am going around in circles.
[quoted text clipped - 5 lines]
>
> Can I do this with a macro?
Set the query criteria for the ClientID field to:
forms!FormName!ComboName
Make sure the datatype of the combo box's bound column is the same as
the datatype of the query field.
The form must be open when the query is run.
If this is for a report (using this query as it's record source), the
usual way is to open the form from the Report's Open event using:
DoCmd.OpenForm "FormName", , , , , acDialog
Add a command button to the form. Code it's click event:
Me.Visible = False
Close the form in the Report's Close event:
DoCmd.Close acForm, "FormName"
When you wish to run the report, open the report.
It will open the form.
Select the client.
Click on the command button.
The Report will run. When you close the report it will close the form.

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.