Use current_date, you should be able to use the _days_between function with that.
_days_between(current_date,[DATEREPORTED])
Hi first check what is [DATEREPORTED] column returning? check is that a date or a key? if that is not mapped with a date ? then u need to cast DATEREPORTED to DATE, then apply
the _days_between (sysdate(),[DATEREPORTED])
because sysdate is a DATE attribute with a timestamp
Hopes it fixes Ur problem