Report

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

Guest

I am new to Access.

Is it possible to create a report that does the following:
 
You can do this in your query or in your report. You would need to apply the
appropriate ()s and there might be issues with possible Nulls in the field
values.

BTW: calculating across fields like this sometimes suggests un-normalized
table structures.
 
thanks but how do I actually do this ?

Duane Hookom said:
You can do this in your query or in your report. You would need to apply the
appropriate ()s and there might be issues with possible Nulls in the field
values.

BTW: calculating across fields like this sometimes suggests un-normalized
table structures.
 
Create a column in your query like:
MyResult:(FieldA+FieldB+FieldD+FieldE) /
(FieldA+FieldB+FieldC+FieldD+FieldE+FieldF)
 

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