How to Display Query Date Parameters in Report W/O Duplicate pop-u

J

jmuirman

My query asks Between [From?] and [To?]. When I run the report those queries
pop-up, but don't show up in my report.

When I add a Text Box with ="From? "&[From]&" To "&[To?] - I get duplicate
pop-up boxes when I run the report.

I researched other posts but didn't find something that worked.

Thanks for your help!

John
 
R

Rick Brandt

jmuirman said:
My query asks Between [From?] and [To?]. When I run the report those
queries pop-up, but don't show up in my report.

When I add a Text Box with ="From? "&[From]&" To "&[To?] - I get
duplicate pop-up boxes when I run the report.

I researched other posts but didn't find something that worked.

If the text between the [ ] is EXACTLY the same in the report as in the query
you should not be prompted again.
 
F

fredg

My query asks Between [From?] and [To?]. When I run the report those queries
pop-up, but don't show up in my report.

When I add a Text Box with ="From? "&[From]&" To "&[To?] - I get duplicate
pop-up boxes when I run the report.

I researched other posts but didn't find something that worked.

Thanks for your help!

John

In an unbound control in the Report Header:
= "From " & [From?] & " To " & [To?]

Note: in your example you did not write the text within the brackets
identically to the query bracketed text.
"[From]" is not the same as "[From?]"
 
J

jmuirman

Ahh...perfect!

Thanks Rick!

John

Rick Brandt said:
jmuirman said:
My query asks Between [From?] and [To?]. When I run the report those
queries pop-up, but don't show up in my report.

When I add a Text Box with ="From? "&[From]&" To "&[To?] - I get
duplicate pop-up boxes when I run the report.

I researched other posts but didn't find something that worked.

If the text between the [ ] is EXACTLY the same in the report as in the query
you should not be prompted again.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top