To be completed by the original poster:
CMS Version
Version 4.3.1
Player Type
Include the Player type you are using.
Player Version
Include the full version, including the revision number.
Issue
I have a dataset with a date field and I’d like to display only matches with today’s date.
I can’t find or understand what to enter in the third filter field.
Does anyone know how to do this?
Tks a lot.
sp_etz
2
Something like `DateField` = CURDATE() ?
1 Like
+ maybe DATE(ScheduleDate) = DATE(NOW()) ?
It would help if you could share the variables you’ve declared
evaret
4
I use this one to show the event 1`hour before and past the event:
now() BETWEEN (Start -interval 1 hour) AND (End)
Thanks everyone,
I solved it this way:
WHERE DATE(data) = CURDATE();
in advanced filter.