Parameter Query Result in Report Header

A

Annie

In a report based upon a parameter query, is there a way to return the query
result (text) to the report header? I tried including an unbound text box and
editing the Control source to ="Report for ([Queries]![ask_question_q]![Enter
Key Word or Phrase],""), following a similar suggestion posted by
[email protected] (saved that tip though), but I am not using a form.Thank
you. Annie
 
D

Duane Hookom

You should use a control on a form for all criteria that aren't constants.
However, have you tried:

="Report for " & [Enter Key Word or Phrase]
Substitute your exact parameter above.
 
A

Annie

Answered my own question with some experimenting. Used =Reports![Name of
Report]![parameter question]
So- sharing in case someone else needs. Annie
 
Top