Looks like you want the TOP value
SELECT TOP 1 entry_date, entry_amount_kg
FROM Tbl_Daily_Entry
ORDER BY Tbl_Daily_Entry.entry_date
Alternate you could use MAX which implicitly only returns the greatest (TOP) value.
In SQL, MIN and MAX are often used, but TOP with either asc or desc on the sort...