jevans
10-11-2000, 01:26 PM
I'm using a group option frame with 6 option buttons to filter on a form. What I would like to do next is filter this data further with an unbound text box. Please help!
|
View Full Version : Multiple filters in a form jevans 10-11-2000, 01:26 PM I'm using a group option frame with 6 option buttons to filter on a form. What I would like to do next is filter this data further with an unbound text box. Please help! chrismcbride 10-11-2000, 04:10 PM The ApplyFilter method of the DoCmd object will allow you to specify more that one criteria for the filter. The Help files will illustrate how to use this function. I would use in in the AfterUpdate of the Option group Frame and the Combo box. Be sure to trap for either field having a null or zero value. Good Luck Chris |