geometric mean of a series of negative asset returns

D

Dave F

The GEOMEAN function calculates the geometric mean for a series of
positive numbers.

I have a series of negative numbers (asset returns) for which I want
to calculate the geometric mean.

Is there any easy way to calculate this? The series is about 30
numbers long and I would prefer not to build this manually...

Thanks in advance.
 
D

Dave F

The GEOMEAN function calculates the geometric mean for a series of
positive numbers.

I have a series of negative numbers (asset returns) for which I want
to calculate the geometric mean.

Is there any easy way to calculate this?  The series is about 30
numbers long and I would prefer not to build this manually...

Thanks in advance.

Actually, the following as an array formula seems to work: =GEOMEAN
(F2:F29*-1)*-1

Strange workaround but it makes sense logically.
 
R

Ron Rosenfeld

The GEOMEAN function calculates the geometric mean for a series of
positive numbers.

I have a series of negative numbers (asset returns) for which I want
to calculate the geometric mean.

Is there any easy way to calculate this? The series is about 30
numbers long and I would prefer not to build this manually...

Thanks in advance.

=geomean(rng+1)-1

entered as an array formula
--ron
 
S

Shane Devenshire

Hi,

You could also use either of these:

=-GEOMEAN(-F2:F10)
=-GEOMEAN(ABS(F2:F10))

The second is more intuitive, but longer and both are arrays.

Cheers,
Shane
 
D

Dave F

Of course, this presumes that negative returns do not reach -100%

--ron- Hide quoted text -

- Show quoted text -

Negative returns in this series are less than -100%. I think your
solution works best, thanks.
 
R

Ron Rosenfeld

Negative returns in this series are less than -100%. I think your
solution works best, thanks.

Thanks for the feedback. I guess you're fortunate in not losing everything in
this market!
--ron
 
D

Dave F

Thanks for the feedback.  I guess you're fortunate in not losing everything in
this market!
--ron

Well, these aren't actual investments. Just a theoretical portfolio
of value stocks.
 

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

Top