HELP NEEDED: Displaying Form Search Criteria on a Report

K

kdagostino

I have form that feeds criteria into a query to produce a report. How do I
display on the report which fields on the form (and their values) are used in
the query?
 
K

KARL DEWEY

Add columns in the query for the information like --
MyStartDate: [Forms]![YourForm]![YourStartTextBox]
--AND --
MyEndDate: [Forms]![YourForm]![YourEndTextBox]
 
Top