DC said:
Yes,I tried this but it still won't refresh any data in the query.The query
criteria is set Like "11/*/2005".Could this be part of the problem
I don't know if it's part of the problem, but your string looks
suspiciously like a date value. If you (for example) are filtering the
dataset for dates in November 2005, you might do that more directly by
comparing the month with November and the year with 2005, or by setting
the criterion to "Between #11/1/2005# And #11/30/2005#". (You might
first have to convert the string to a date via the Datevalue() function.)
-- Vincent Johns <
[email protected]>
Please feel free to quote anything I say here.