Next Date Default

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table that lists events and the dates associated with them. On my
switchboard, I want a drop down box that defaults to the next event name
based on the associated date. Is that possible?
 
Something like this as the Row Source for the Combo box should show the next
event at the top.

SELECT tblEvents.Event, tblEvents.EventDate
FROM tblEvents
WHERE tblEvents.EventDate >= Date()
ORDER BY tblEvents.EventDate;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top