Rounding and calculations

J

jderrig

Does anyone know the reason that I come up with a
different number by using an average function than if I
were to create the calculation manually.

Example:

If I use the avg function to come up with ROLE
=Sum(Savings/Equity-Inv) results in 4.6%
=Avg(ROLE) results in 1.82%

I have ROLE figured in a query and then try to average the
total ROLE for the entire list in a report.
 
C

Chris Nebinger

I think it has something to do with the order of
operations. Should the equation look like:

Savings
_________
Equity-Inv


Or:

Savings
_______ - Inv
Equity


If it's the first, then you need a second set of
parenthses.


=Sum(Savings/(Equity-Inv))

Chris Nebinger
 

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

Similar Threads

Prior 3 Mo Avg Function 1
count unique - yet more info 4
Form Calculations 2
Incorrect sum in MS Access query 1
Reporting an Average 10
Avg query 5
Time Calculations 7
Stacking queries and Calculations 3

Top