filter report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI,
Is there a way to filter a report where if field [x] = 0, that record
doesn't apper on the report?
If possible I'd like to do this without a query.
Thanks
 
s4 said:
HI,
Is there a way to filter a report where if field [x] = 0, that record
doesn't apper on the report?
If possible I'd like to do this without a query.
Thanks

DoCmd.OpenReport "ReportName", acViewPreview,,"[x] <> 0"
 
Thanks

Rick Brandt said:
s4 said:
HI,
Is there a way to filter a report where if field [x] = 0, that record
doesn't apper on the report?
If possible I'd like to do this without a query.
Thanks

DoCmd.OpenReport "ReportName", acViewPreview,,"[x] <> 0"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top