Sep 5, 2005 #1 benrob82 Programmer Jul 28, 2005 116 GB Can anyone tell me how it is possible to do this, or point me in the right direction? Thanks
Sep 5, 2005 #2 TSIsolutions MIS Jan 24, 2002 33 CA 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 Upvote 0 Downvote
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