C
Cathy
I have a standard form (called Form1) with an unbound textbox called
txtDescription. The default value for the textbox is "test". I also have a
query that pulls the contents of txtDescription:
SELECT Options_Report.ID AS IDENTIFIER,
Forms!Form1.txtDescription AS DESCRIPTION
FROM Options_Report
I need the same description to appear next to each identifier. My problem
is that this query always pulls the default value (test), never the
description that it typed in the txtdescription textbox. If I take out the
default description, then it works... but I really wanted to have a default
value to prompt the users as to the type of content I'm expecting.
What am I doing wrong?
Thank you!
txtDescription. The default value for the textbox is "test". I also have a
query that pulls the contents of txtDescription:
SELECT Options_Report.ID AS IDENTIFIER,
Forms!Form1.txtDescription AS DESCRIPTION
FROM Options_Report
I need the same description to appear next to each identifier. My problem
is that this query always pulls the default value (test), never the
description that it typed in the txtdescription textbox. If I take out the
default description, then it works... but I really wanted to have a default
value to prompt the users as to the type of content I'm expecting.
What am I doing wrong?
Thank you!