I'm having trouble converting a date value in a watchlist to be understood as a datetime value.
I've tried using format_datime(), datetime(), date() but the value becomes blank.
steps to reproduce:
create a watchlist with a column that has a date in the format
dd/MM/yyyyrun a query where you attempt to filter on the date column. (ensure the date value meets the condition)
let examplewatchlist = _GetWatchlist("exampleWatchlist");
examplewatchlist
| where ReviewDate > now() // now is 01/03/2024
For example, here is my watchlist (a total of 1 row)

My desired output for the above query should be this one row in the watchlist because it satisfies ReviewDate > now()
Created a watchlist same as you have :
You can use below
KQL queryto get expected results:ReviewDate is not stored as datetime, it needs to transformed as above.
To test date with now():
Later you can use
|project-away testto remove extra columns.