Hi,
I'm implementing a query form with a date field as this:
and revision_date=date('$value(revision_date)','mm/dd/yyyy hh:mm:ss')
When I execute the query from the search widget, the query doesn't works because in the log I found this:
and revision_date=date('02/07/2022 UTC','mm/dd/yyyy hh:mm:ss')
So, the system add UTC and the date format fail.
How I can do a substr on date in order to have this?
and revision_date=date('02/07/2022','mm/dd/yyyy hh:mm:ss')
I have tried:
and revision_date=date('substr($value(revision_date),1,10)','mm/dd/yyyy hh:mm:ss')
but it doesn't work.
Thanks.
Regards.