Hi, the table below is in MS Access and I'm trying to pull out only one eventDate (the date nearest to today) for each unique eventID in order by date. (the times of the event are irrelevent)
I would like this result:
ID eventID eventTime eventDate
63 23 11am 7/23/2004
61 22 11am 7/28/2004
72 26 8pm 7/29/2004
69 25 5pm 8/1/2004
65 24 11am 8/13/2004
This is my table:
ID eventID eventTime eventDate
61 22 11am 7/28/2004
62 22 2pm 7/28/2004
63 23 11am 7/23/2004
64 23 2pm 7/23/2004
65 24 11am 8/13/2004
66 24 2pm 8/13/2004
68 25 2pm 8/1/2004
69 25 5pm 8/1/2004
70 25 2pm 8/2/2004
71 25 5pm 8/3/2004
72 26 8pm 7/29/2004
Thank you for any help!!!