geomean function for ms access

  • Thread starter Thread starter doco
  • Start date Start date
D

doco

Have looked on the web and manuals for algorithym to calculate the geomean()
of a list of ratios. Does anyone know where this may be found? Or have one?

TIA
doco
 
My memory from high school (a long time ago) is that a geometric mean is
calculated by multiplying the factors together then exponentiating it to the
inverse of the count of items.
geomean(a,b)=(ab)^1/2
geomean(a,b,c)=(abc)^1/3
geomean(a,b,c,d)=(abcd)^1/4

Shouldn't be too hard to code that as a function which takes an array as its
argument...

HTH
- Turtle
 

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