Hi everyone !
I’d like for a field to return a checkbox if the date AND time reflected in the « Date » column are equal to now(). However, I can’t seem to get anything to work.
I’ve tried:
formatDate(prop(" Date "), " LLLL ") == formatDate(now(), " LLLL ")
(In this case, « L » and « LLL » work, but it stops working once I’ve added more L’s)
formatDate(prop(" Date "), " DD MM, YYYY, HH ") == formatDate(now(), " DD MM YYYY, HH ")
(Again, in this case, it works until I add the HH)
formatDate(prop(" Date "), " DD MM, YYYY, HH:mm ") == formatDate(now(), " DD MM, YYYY, HH:mm ")
(Same result as above)
My Date/time format is set up to full format, and generates dates as follows, for example: 3 november 2022 07:00-18:30
I can’t find any time formulas online that do what I want here, so I've just been throwing around different formulas, like above.
Would you guys perhaps know of a way to set this up ?