B
Bob
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
the user input parameter value in a query and display it
in a report.
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
-----Original Message-----
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
Add an unbound text control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Start Date] & ' and " & [Enter End
Date]
The text within the brackets must be identical to the bracketed query
prompts.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Thanks for the reply, Fred. This works fine if the user
inputs a valid parameter value from the table. My purpose
is to display the value the user actually input so that
they could see if they made a mistake typing the input.
Example: The user wants to see all of the 'angle' iron
listed in a table but types the word 'angel' instead
in 'angle'. I want to be able to display the word 'angel'
on the report (or more likely, in a message box) so that
he can see that he typed his input incorrectly.
-----Original Message-----
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
Add an unbound text control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Start Date] & ' and " & [Enter End
Date]
The text within the brackets must be identical to the bracketed query
prompts.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Thanks for the reply, Fred. This works fine if the user
inputs a valid parameter value from the table. My purpose
is to display the value the user actually input so that
they could see if they made a mistake typing the input.
Example: The user wants to see all of the 'angle' iron
listed in a table but types the word 'angel' instead
in 'angle'. I want to be able to display the word 'angel'
on the report (or more likely, in a message box) so that
he can see that he typed his input incorrectly.
-----Original Message-----
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
Add an unbound text control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Start Date] & ' and " & [Enter End
Date]
The text within the brackets must be identical to the bracketed query
prompts.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Thanks for the reply, Fred. This works fine if the user
inputs a valid parameter value from the table. My purpose
is to display the value the user actually input so that
they could see if they made a mistake typing the input.
Example: The user wants to see all of the 'angle' iron
listed in a table but types the word 'angel' instead
in 'angle'. I want to be able to display the word 'angel'
on the report (or more likely, in a message box) so that
he can see that he typed his input incorrectly.
-----Original Message-----
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
Add an unbound text control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Start Date] & ' and " & [Enter End
Date]
The text within the brackets must be identical to the bracketed query
prompts.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Thanks for the reply, Fred. This works fine if the user
inputs a valid parameter value from the table. My purpose
is to display the value the user actually input so that
they could see if they made a mistake typing the input.
Example: The user wants to see all of the 'angle' iron
listed in a table but types the word 'angel' instead
in 'angle'. I want to be able to display the word 'angel'
on the report (or more likely, in a message box) so that
he can see that he typed his input incorrectly.
-----Original Message-----
On Thu, 9 Sep 2004 11:58:26 -0700, Bob wrote:
Anybody have a brilliant idea for this? I need to capture
the user input parameter value in a query and display it
in a report.
Add an unbound text control to the report header.
Set it's control source to something like:
="For sales between " & [Enter Start Date] & ' and " & [Enter End
Date]
The text within the brackets must be identical to the bracketed query
prompts.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.