al1en
al1en

Reputation: 511

Need an AVERAGE from a MULTIPLE CRITERIA VLOOKUP

I'm not an Excel expert. I've tried to achieve something that for me seems simple at the beginning but than I've spend a few hours in searching and trying different solutions but couldn't find something that fits my problem. I hope some of you guys will find a solution for me?

This is my problem: The sample table:

A    B    C    D    E    F
1st  A    ?    ?    ?    12.58%
1st  B    ?    ?    ?    10.25%
1st  A    ?    ?    ?    8.56%
2nd  A    ?    ?    ?    10.23%
2nd  B    ?    ?    ?    15.26%
etc.

What I want to achieve is to find the AVERAGE percent for all 1st (column A) and A's (column B) if possible. The percentage is calculated in column F and the other columns contain other number irrelevant to the problem.

I've tried some VLOOKUP and INDEX&MATCH but with no success. I hope someone here can help me. Thanks for reading.

Upvotes: 0

Views: 817

Answers (1)

enece
enece

Reputation: 38

Try =AVERAGEIFS(F2:F6,A2:A6,"1st",B2:B6,"A")

Upvotes: 1

Related Questions