Help With Unbound Combo Box Attached to a Query

  • Thread starter Thread starter Radar
  • Start date Start date
R

Radar

Need help. I have a form with unbound fields attached to a query. I
have a combo box that is attatched to a queries all available data. I
have a field called DayOust, and the availible data is 1,2,3,4,5 !
The program work fine. but what if I want to see all of my stores that
are 3 and 4 daysout. I tride to type in "3" or "4" and it didnot work.
I all so wanted to see if I could use the Is Null function and that
didnot work;
1. How to type in multiple numbers
2. What do I do to bring up all my days
3. How I make my combo box show me the availble days to use and with
option of selecting all.

Thanks in advance
Radar
 
Combo boxes allow the selection of one value. If you need to select more
than one item from a list, consider using a listbox control, with the
multi-select property set accordingly.
 
Back
Top