I have a bunch of points that are created daily via Survey123 that data is then displayed in ArcGIS Online. In AGO I would only like to display the current day's data using Arcade.
This is what I am using and the code is correct but it only returns any day but today.
if ($feature.Date = today())
{return 'this'}
else {return 'that'}
Lil' bit of a novice so this may be obvious but what am I doing wrong?