
Originally Posted by
June7
In other words, you want all the records where the AnnivDate is before the criteria date? Criteria under AnnivDate field simply: <=[enter date].
However, I never use input popups to enter parameters. Use unbound textbox on form to enter value and reference textbox as parameter: <= Form!formname!textboxname
Also, instead of dynamic parameters in query, I prefer to pass criteria to report with code:
DoCmd.OpenReport "report name", , , "AnnivDate=#" & Me.textboxname & "#"
Is your report designed using Grouping & Sorting features with aggregate calcs in header/footer sections? This will allow display of detail records as well as summary calcs.