papadega3000
Registered User.
- Local time
- Today, 10:11
- Joined
- Jun 21, 2007
- Messages
- 80
I have a form with drop down boxes that list 3 related fields and I have a search button that will requery based on the the input from these boxes. These boxes are all prepopulated with the data and I want to be able to select something from Box1 and then based off Box1 change whats populated in Box2 and Box3. Any idea's???
I already have a query setup like this to requery a query I make:
( I have a button that initiates the requery based off what input is given)
Box1:
IIf(IsNull([Forms]![FormName]![Combo1]),[Field1],[Forms]![FormName]![Combo1])
Box2:
IIf(IsNull([Forms]![FormName]![Combo2]),[Field2],[Forms]![FormName]![Combo2])
Box3:
IIf(IsNull([Forms]![FormName]![Combo3]),[Field3],[Forms]![FormName]![Combo3])
Problem with this is that is does not requery correctly and it only filters on one of the criteria ( Field1) and spits out all records for the other two?
So I figured since I already populate the drop downs with the records why not just change the contents of the drop downs?
If anyone can give me some insight it would be much appreciated?
Thanks in advance.
I already have a query setup like this to requery a query I make:
( I have a button that initiates the requery based off what input is given)
Box1:
IIf(IsNull([Forms]![FormName]![Combo1]),[Field1],[Forms]![FormName]![Combo1])
Box2:
IIf(IsNull([Forms]![FormName]![Combo2]),[Field2],[Forms]![FormName]![Combo2])
Box3:
IIf(IsNull([Forms]![FormName]![Combo3]),[Field3],[Forms]![FormName]![Combo3])
Problem with this is that is does not requery correctly and it only filters on one of the criteria ( Field1) and spits out all records for the other two?
So I figured since I already populate the drop downs with the records why not just change the contents of the drop downs?
If anyone can give me some insight it would be much appreciated?
Thanks in advance.