Microsoft Access Query Max Vaule per Date

Assuming that you have your data in a table called Sheet1, you can type the following query in SQL view in MsAccess:

SELECT int(Field2) as ExcelDay, max(Field1) as MaxOfField1
FROM Sheet1
group by  int(Field2) 

int(Field2) removes the fraction from the time, leaving the Day you requested.