Limit combobox view list

Skip Bisconer

Who Me?
Local time
Today, 15:10
Joined
Jan 22, 2008
Messages
285
I have an unbound combobox to select records for my form. When selected there are 2 fields that get up dated then another record is selected. Is it possible to eliminate the records that have been updated from the combobox list?
 
What signifies whether a record has been updated or not? Generally, the rowsource of the combo can look at that:

SELECT Blah
FROM TableName
WHERE Updated = False
 
The row source is the table being updated and has both fields in the rowsource. Could I limit it in the Rowsource something like is null? Because if the field was updated it would have a value in it otherwise it would be empty.
 
Sure; then just requery the combo and it should drop records that have been updated.
 

Users who are viewing this thread

Back
Top Bottom