E Evagrius Registered User. Local time Today, 01:23 Joined Jul 10, 2010 Messages 170 Sep 13, 2010 #1 Hi, I am getting error "Property setting too long". I have around 200 criteria in the sample below? Is there a better way to do this? Thank you!! Code: Me.Filter = "[Number] IN ('12345','552364', . . . . .
Hi, I am getting error "Property setting too long". I have around 200 criteria in the sample below? Is there a better way to do this? Thank you!! Code: Me.Filter = "[Number] IN ('12345','552364', . . . . .
boblarson Smeghead Local time Today, 00:23 Joined Jan 12, 2001 Messages 32,040 Sep 13, 2010 #2 200 criteria? If so, create a table with one field for them and then instead of the filter you would change the form's recordsource to the query with that as the limiting factor. You would do something like this in the query but instead of Is Null you would use Is Not Null.
200 criteria? If so, create a table with one field for them and then instead of the filter you would change the form's recordsource to the query with that as the limiting factor. You would do something like this in the query but instead of Is Null you would use Is Not Null.
E Evagrius Registered User. Local time Today, 01:23 Joined Jul 10, 2010 Messages 170 Sep 13, 2010 #3 Bob - thank you! I will work on this tonight and let you know how it works! Thank you!