Davg Question!

J

JOM

I want to use DAVg but am not sure how to use it. I have a 2 fields in my
table FieldA and FieldB so what I would want is
get the average of (FieldA/FieldB)/100 How will this work?
 
D

Dirk Goldgar

JOM said:
I want to use DAVg but am not sure how to use it. I have a 2 fields
in my table FieldA and FieldB so what I would want is
get the average of (FieldA/FieldB)/100 How will this work?

So you want the average of that expression? You should be able to write

DAvg("(FieldA/FieldB)/100", "YourTableName")
 
Top