I am using Ms Access and below is my Query
select * from travelapproval
where CDate(datefrom1) <= Date()
and CDate(dateto1) >= Date()
I am using datefrom1 and dateto1 are text type. It shows "Data type mismatch in criteria expression."
How can I convert them to datetime even I tried with CDate function.