Greetings and thanks in advance for any assistance you can give me. I'm having issues with a MS Access query I use to filter a report to a specific set of months. To do this I present the user a form that says "pick a range of months" and gives them two combo boxes. Those combo boxes are unbound value lists, two column (1 - Jan 2 - Feb etc), and the first column is bound. Then the query that is embedded in the report has a custom field 'Birth Month' that uses Month([DOB]). The criteria on that custom field is >=combo box 1 value and <=combo box 2 value. This works fine if the months selected are between Jan and Sep, but if a month with an associated two digit number is selected I get either no results ( start month Feb-Sep and end month Oct-Dec) or I get Jan included with the last three months (start month Jan and end month Oct-Dec). With the second failure mode it doesn't matter which month I end with, Oct thru Dec and included in the report. So, after all that, is there a better way to define the combo box values so that the query will behave properly? Or should I do something special in the report data query that I'm not aware of to make it accept values for the custom filed Month([]date])? What I have in there now doesn't create an error, but it doesn't produce the correct results either. Any suggestions welcome. Thanks.