OK...my first impression is you breakdown is here:
test = "[SelectRelations].[Country] = '" & Me.CountryCombo & _
"' AND [SelectRelations].[Event] = '" & Me.EventCombo & "'"
it should actually read:
test = "[SelectRelations].[Country] = '" & Me![CountryCombo] & _
"' AND [SelectRelations].[Event] = '" & Me![EventCombo] & "'"
Notice the changing of the dot (.) to bang (!) and the addition of the square brackets ([]).
This is a common mistake for newer individuals. Here's the logic for when to use bang and when to use dot and why.
Bang refers to a control on an object, dot refers to a property of the object. For example, if you have a textbox called txtName on a form called frmMain, to reference the text box you should use: Forms![frmMain]![txtName] To reference the pop-up property of the form frmMain you would use: Forms![frmMain].PopUp = True
As you can see, use bang for referencing most controls and use dot to call the property of the controls/forms....
****************************
Only two things are infinite, the universe and human stupidity,
and I'm not sure about the former. (Albert Einstein)
Robert L. Johnson III
MCSA, CNA, MCP, Network+, A+
w: robert.l.johnson.iii@citigroup.com
h: wildmage@tampabay.rr.com