"Há um erro '=' ocorrendo no filtro da minha consulta. O que pode estar causando isso?"
Hi @Mário Pombal ,
I copied your expression, but got another error:
Cannot apply '-' operator to 'Date' together with 'Integer'.
The error was on these lines: In OutSystems, CurrDate() gives you a date value, and you can’t just do “date – number” to subtract days. You have to use the built-in date functions instead, for example:
AddDays(CurrDate(), -3)
The final expression would be:
The error persists
Hi Mario,
Can I check if your Appointment.Date is Date but not DateTime? If that is the case, here is the revised answer from Mihai.