views:

30

answers:

1

I need to create a report not based on a table or query but on a form The form has multiple Fields from table a, b, c and query x, y, z (all relating to what the end-user selects)..All those fields are combo-boxes

how do I create a report based on that form.

Thanks

+1  A: 

If the form is open, you can refer to the form controls on the report. Create a textbox and set the Control Source to, say:

 =Forms!frmForm!txtText
Remou