The date format between dtMeetingStart/dtMettingFinish and NOW() SQL function il not the same format.
In dtMeetingStart/dtMettingFinish columns you have “May-22-24 10:00 AM” = M-d-y h:i A
NOW() SQL function return 2024-05-22 10:00:00 = Y-m-d H:i:s
.
So you must format your columns in the NOW() SQL function format, or create a formula column and use this one to filters.
You can use this topic for an exemple:
And use PHP date/time format documentation:
https://www.php.net/manual/en/datetime.format.php
1 Like