Hi benrob82
How are you filtering the form? You may have to elaborate a little more. But if you are programatically using Filters like:
strFilter = "Country = 'USA'"
Me.filter = strFilter
Me.Filter = true
Also, if you are generating a report from the Form by clicking a button, then you could always do the following:
DoCmd.OpenReport "ReportName" , acViewNormal, , strFilter
Where the strFilter is placed in the WhereCondition of you OpenReport Command.
Hope this helps,
Let me know