Averageifs + <> ???

Maria5

New Member
Joined
Jan 27, 2015
Messages
4
I definitely need help. Here's what I'm trying to do:
Average the Earnings if Category = 60, Group = 8, Title = Support, Support I and Support II (basically, all Titles EXCEPT Cash Associate and Specialist). The answer should be $4,166.67 but I don't know how to get a formula to give me the answer.

Please no VBA since I do not know it :)
Title
Group
Category
Earnings
Cash Associate
8
60
$1,900.00
Cash Associate
7
62
$3,200.00
Support
8
60
$4,000.00
Support II
1
60
$3,000.00
Cash Associate
2
65
$3,800.00
Specialist
2
60
$4,660.00
Specialist
8
60
$3,800.00
Specialist
8
60
$4,000.00
Support II
8
60
$5,000.00
Specialist
10
60
$3,900.00
Specialist
8
60
$900.00
Support I
8
60
$3,500.00
Cash Associate
5
60
$4,500.00
Support
4
60
$2,500.00
Cash Associate
8
62
$2,200.00

<TBODY>
</TBODY>
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
How about using "Support*" as the criteria?

=AVERAGEIFS(Earnings,Title,"Support*",Category,60,Group,8)
 
Upvote 0
What if one of the titles that I wanted to included was Lead? So I would want to average all the earnings of Support, Support I, Support II and Lead and exclude the other 2?
 
Upvote 0
That's interesting regarding support*. I never knew to use the asterisk! Learned something new already :)
 
Upvote 0
In that case, I suggest a helper column..

If there are fewer to EXclude, than to INclude..
Try this in an available column, Say F

=OR(A1={"Cash Associate", "Specialist"})

Then use
=AVERAGEIFS(D:D,F:F,FALSE,B:B,8,C:C,60)
 
Upvote 0
You're welcome.

FYI, to change it to an INclusive instead of EXclusive,
Just change FALSE to TRUE in the Averageifs.
 
Upvote 0

Forum statistics

Threads
1,216,500
Messages
6,131,016
Members
449,615
Latest member
Nic0la

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