Why wouldn't uyou modifiy the SQL? I'm not sure if you understand my
response. The SQL is part of the Command text of the query and is the method
you use to filter data.
You can open the data as a recordset and read the data one record a time.
But again Why??????? If I knew why you don't want to use an SQL then maybe I
can give a better answer.
Staten42 said:
Is there a way of doing outside of altering the SQL statement?
:
Try putting a like clause into the SQL like this
WHERE (Submissions.Task_ID Like '[0-9]+')
the square brack will says to take any characters 0 through 9 and the plus
say to do it infinite number of times
Submission is a table in one of my database and Task_ID is a column in the
table.
:
I am pulling data from an ODBC connection, and need to filter results based
on a specific field. This particular field includes both alpha and numeric
values and I only want it to pull in one or the other. Any thoughts?