R
Rose B
I have a combo field where the underlying query has a criteria on a date field
of "[Forms]![frmGroupTrips].[GroupTripDate]". If I use the combo on
the form, the list is not there. If I go into the query via properties and
run
it, it returns the single record I need. When I go back to the form then the
record is there in the combo list - but if I go to another record, with
another date then it is still there and shouldn't be. Why does the query
behind the combo box not update based upon the current data? (Or more
precisely -
how can I get it to do that?)
The SQL of the query is
SELECT Event.EventID, Event.EventTitle, Event.EventDate
FROM Event
WHERE (((Event.EventDate)=[Forms]![frmGroupTrips].[GroupTripDate]));
of "[Forms]![frmGroupTrips].[GroupTripDate]". If I use the combo on
the form, the list is not there. If I go into the query via properties and
run
it, it returns the single record I need. When I go back to the form then the
record is there in the combo list - but if I go to another record, with
another date then it is still there and shouldn't be. Why does the query
behind the combo box not update based upon the current data? (Or more
precisely -
how can I get it to do that?)
The SQL of the query is
SELECT Event.EventID, Event.EventTitle, Event.EventDate
FROM Event
WHERE (((Event.EventDate)=[Forms]![frmGroupTrips].[GroupTripDate]));