D Debbie S. Jan 23, 2008 #1 How do you show (print) on a report the criteria used to generate the report? Thank you. Debbie
F fredg Jan 23, 2008 #2 How do you show (print) on a report the criteria used to generate the report? Thank you. Debbie Click to expand... And what is the criteria on the report? Let's assume the report criteria is in the query date field like: Between [StartDate] and [EndDate] In an unbound control in your report header, write: = "For sales between " & [StartDate] & " and " & [EndDate] The text within the brackets must be identical to the bracketed text in the query.
How do you show (print) on a report the criteria used to generate the report? Thank you. Debbie Click to expand... And what is the criteria on the report? Let's assume the report criteria is in the query date field like: Between [StartDate] and [EndDate] In an unbound control in your report header, write: = "For sales between " & [StartDate] & " and " & [EndDate] The text within the brackets must be identical to the bracketed text in the query.