>I know this may be a odd question considering the number of posts on filters
>in reports... but I can't find anywhere a description on how to create a
[quoted text clipped - 6 lines]
>I presume there's a way to make a textbox / select list that can be used to
>enter the value (sales) and operator (< >) to filter the output (report)?
Report's should not contain their own filtering mechanism if
you can avoid it
Generally, the filter should be applied in the code that
opens the report (usually a commanf button on a form)
stWhere = "[total sales]" & cboOperator & txtSales
DoCmd.OpenReport "report name", , , stWhere

Signature
Marsh
MVP [MS Access]