Report

  • Thread starter Thread starter Guest
  • Start date Start date
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)
 
Back
Top