Show Prompted Criteria on Report (1 Viewer)

MsLady

Traumatized by Access
Local time
Today, 12:50
Joined
Jun 14, 2004
Messages
438
I have a criteria in my report that prompts the user for input when they open the report.

I just have [Enter date] on the query criteria the report based on.

I would like to show the "entered criteria" on the report when the report is open. Can someone tell me how to?

I'd like a heading label on my report to read:
Records for [date]

I am aware that i could put textboxes on a form and have it get the value from that "=Forms!YourForm!textbox" but that's not what i want. This has nothing to do with a form.

I want to open the report straight from the report's object window, enter the criteria when prompted and print the entered criteria on the report's label.

Please help?
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 12:50
Joined
Aug 30, 2003
Messages
36,136
Try a textbox with a control source of:

="Records for " & [Enter date]
 

boblarson

Smeghead
Local time
Today, 12:50
Joined
Jan 12, 2001
Messages
32,059
inaccurate information removed
 
Last edited:

pbaldy

Wino Moderator
Staff member
Local time
Today, 12:50
Joined
Aug 30, 2003
Messages
36,136
I do not think that Paul's suggestion will work as it will result in you getting two prompts for date.

Your confidence in me is under-whelming. As long as the text in the control source brackets exactly matches the text in the criteria brackets, you will only get one prompt.
 

HiTechCoach

Well-known member
Local time
Today, 14:50
Joined
Mar 6, 2006
Messages
4,357

MsLady

Traumatized by Access
Local time
Today, 12:50
Joined
Jun 14, 2004
Messages
438
Try a textbox with a control source of:

="Records for " & [Enter date]

Thank you pbaldy, it works like charm :D

Thank you all for your time *muah
 

Users who are viewing this thread

Top Bottom