Help with complex average/if statement

H

heidi_stephens

My worksheet has a tab for each quarter, with data on each tab as in
the example below:

REGION SCORE
Asia 3.4
Asia
Asia 4.0
EMEA
EMEA 2.7
NA 3.9
NA
etc.

In other words, there are multiple regions, and each row may or may not
have an associated score.

On each tab, I've successfully averaged the scores by region using the
following formula:
{=AVERAGE(IF((A$4:A$92="EMEA")*ISNUMBER(L$4:L$92),L$4:L$92))}

However, I need to insert a summary tab which averages the scores by
region across the quarterly tabs. I've tried a couple variations on
the above formula but I don't really know how to adapt it to perform
this calculation.

Any advice would be greatly appreciated!!
 
D

Domenic

If you download and install the free add-in Morefunc.xll, you can use
the THREED function as follows...

=AVERAGE(IF(THREED('Sheet1:Sheet4'!A$4:A$192)="Asia",IF(ISNUMBER(THREED('
Sheet1:Sheet4'!L$4:L$192)),THREED('Sheet1:Sheet4'!L$4:L$192))))

....confirmed with CONTROL+SHIFT+ENTER. The add-in can be downloaded at
the following link...

http://xcell05.free.fr/

Hope this helps!
 

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