R
robkiolbasa
Hello, I have a rather complex form that is creating a text string
that I would like to use for the WHERE clause in a query that I already
have designed. Right now I have it stored in just a text field, named
"txtWhere". Can someone help me with how to pass just this value into
the Where clause? Any help is appreciated, thanks
This is what I would like:
SELECT Data.chg_ref_num, Data.summary, Data.description, Data.priority,
Data.need_by, Data.Analyst_Analyst, Data.sym, Data.Short,
Data.Groups_Analyst, Data.l_details, Data.Desciption
FROM Data
WHERE ( **My String I have Created (txtWhere)** );
I have tested the syntax of the string and it works.
that I would like to use for the WHERE clause in a query that I already
have designed. Right now I have it stored in just a text field, named
"txtWhere". Can someone help me with how to pass just this value into
the Where clause? Any help is appreciated, thanks
This is what I would like:
SELECT Data.chg_ref_num, Data.summary, Data.description, Data.priority,
Data.need_by, Data.Analyst_Analyst, Data.sym, Data.Short,
Data.Groups_Analyst, Data.l_details, Data.Desciption
FROM Data
WHERE ( **My String I have Created (txtWhere)** );
I have tested the syntax of the string and it works.