SELECT *
FROM my_table
where mycolumn is not null and mycolumn <> '' and CDate("2019-05-24 23:07:07")<CDate(mycolumn)
This failed but this works
SELECT *
FROM my_table
where CDATE("2020-08-24 23:07:07") < CDATE(NZ(IFF(mycolumn = '', NULL, mycolumn), "2000-01-01 00:00:00"))
Thank you :)