Hi,
I have a simple problem which I cannot solve (maybe I'm staring to long at a simple thing 🙂 )
This works:
FIND OpslagContractDatum WHERE OpslagContractDatum.Datum>=CURRENT_DATE-3
This works:
FIND OpslagContractDatum WHERE OpslagContractDatum.Datum<=CURRENT_DATE+3
This does not work (no rows returned):
FIND OpslagContractDatum WHERE OpslagContractDatum.Datum>=CURRENT_DATE-3 AND OpslagContractDatum.Datum<=CURRENT_DATE+3
This does NOT work
FIND OpslagContractDatum WHERE OpslagContractDatum.Datum BETWEEN (CURRENT_DATE-3) AND (CURRENT_DATE+3)
This works (but is useless of course:
FIND OpslagContractDatum WHERE OpslagContractDatum.Datum BETWEEN (CURRENT_DATE) AND (CURRENT_DATE)
TIA,
Rob