I have a column "MYDATE" with dates (dd/mm/yyyy) and I need to create a calculated column that checks if the date is today's date.
I have tried '=if [MYDATE]=DateTime.LocalNow() then "Yes" else ""' this butit did not work because of the different format.
Any suggestion?
You can use Date.IsInCurrentDay([MYDATE])
or closer to your attempt:
if [MYDATE] = DateTime.Date(DateTime.LocalNow()) then "yes" else ""
Note that both solutions check against the last refresh date.