With that structure you could use a calculated field that looks like the
following and search against it.
IIF(IsDate([YourField]),Format(CDate([YourField]),"mm/dd/yyyy"),[YourField])
That will give you a string that is consistently formatted for your dates and
when the field is NOT a date you will get the value returned. Although in
some cases you might get unexpected results. As this will transform partial
date strings. August 20 will be converted to the string 08/20/2010.
John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County
It is a text field that sometimes contains a date and others times contains
text. I've tried CVDate and DateValue, neither are pulling all instances of
[quoted text clipped - 11 lines]