Filter a Reports calculated field

G

Guest

I have a report that draws data from various tables, and makes some
calculations with information from the tables.

I need to run a report that will automatically filter the calculated field
eg. The report will only show the records > 10%

Is this possible using SQL and if so how?
 
M

Marshall Barton

Andy said:
I have a report that draws data from various tables, and makes some
calculations with information from the tables.

I need to run a report that will automatically filter the calculated field
eg. The report will only show the records > 10%

Is this possible using SQL and if so how?

Report's can not filter themselves on a value they are
calculating. The calculation needs to be done in the
report's record source query so the query's Where clause can
filter the records..

As a last resort, a report can cancel a section by setting
the section's Format event procedure's Cancel argument to
True.
 

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

Top