SELECT Mainstem.Event_date, Max(Mainstem.Crooked) AS MaxOfCrooked
FROM Mainstem
GROUP BY Mainstem.Event_date;
Here is the SQL with the stand alone table (mainstem). I was trying the extra table because I could not get it to work by sorting what I needed in the "Mainstem" table so disregard the...