GEOMEAN with IF(AND statement

koplover

New Member
Joined
Dec 13, 2017
Messages
5
Hello

I am having issues with getting a Geomean Array to work. I have a list of dates in column A and results in column B on one sheet. I am trying to code a formula to that looks a date 1 and date 2(cell E1 and E2) and Geomeans all the results with dates between date 1 and date 2. Here is what I have

{=GEOMEAN(IF(AND($A$3:$A$500>=$E$1,$A$3:$A$500<=$E$2),$B$3:$B$500,""))}

This returns #value !

I believe the issue is with the AND statement, If I remove that and just look at 1 date field it works.

Thanks for your help
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Thanks for he quick response Tetra :) when you say * do you mean &? Either way did not work.

After spending some more time on it, I don't believe its the AND statement that is the issue (I might be wrong). If I narrow the range from 3-500 to a range that only has dates inside of date 1 and 2 it works. As soon as it encounters a date outside of that, it fails.
 
Upvote 0
@ koplover

AND of Excel delivers just a single value result, i.e. a logical value, not an array result. Thus a TRUE or a FALSE, not a bunch TRUE or FALSE, each corresponding to an evaluatin.

An AND can be written in terms of a multiplication or in terms of IF...

1.

{=GEOMEAN(IF(($A$3:$A$500>=$E$1)*($A$3:$A$500<=$E$2),$B$3:$B$500))}

2.

=GEOMEAN(IF($A$3:$A$500>=$E$1,IF($A$3:$A$500<=$E$2,$B$3:$B$500)))
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,196
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top