In out group database, we have a string field [Recovery_Date] that I need to query - using Visual Basic - as a Date-type. I've tried with (variations of) this snippet
SELECT * FROM RB_LOCAL WHERE CDate([Recovery_Date]) = " & Date
Is it possible to query a string type as another data type?
SELECT * FROM RB_LOCAL WHERE CDate([Recovery_Date]) = " & Date
Is it possible to query a string type as another data type?