Getting value for max(date)

Hello,

i need the last inserted value of a field for the progress bar.

so to say, turned to a query:

SELECT requested_field
FROM reports
WHERE date_entered = ( SELECT MAX(date_entered) FROM reports );

but I can’t seem to find how to do that while filtering.