Averaging some cells -

MBaker25

New Member
Joined
Sep 6, 2014
Messages
7
I have a column that contains ten cells that will have a score of 100, 0 or the words “No Impact” in them. I need excel to average this column but exclude the cells that contain the words “No Impact”. So basically, if I take 10 tests and score 100 on all of them but 1, how do I get excel to average 100 by forgiving one of those test that I would be labeled “No Impact”)?</SPAN>

100 – test one</SPAN>
100 – test two</SPAN>
100 – test three</SPAN>
100 – test four</SPAN>
100 – test five</SPAN>
100 – test six </SPAN>
No Impact – test seven</SPAN>
100 – test eight</SPAN>
100 – test nine </SPAN>
100 – test ten </SPAN>

Average should return 100% not 90%</SPAN></SPAN>
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try

Code:
{{=sum(if(A1:A10<>"No Impact",A1:A10))/count(if(A1:A10<>"No Impact",A1:A10))}

Note that it's an array formula, so you need to hit ctrl-shift-enter while your curor is inside the cell with the formula.
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,721
Members
449,093
Latest member
Mnur

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