Sum(If(Text in Range,Range))/a number to average but don’t count na’s

mjones

Board Regular
Joined
Oct 27, 2007
Messages
94
Office Version
  1. 365
Platform
  1. Windows
Hi Again,

Here’s my incorrect formula but a start. It gets a total of numbers in B192:B378 if “ngf” is in column V. Then I'm trying to get an average of the numbers that were totaled.

{=(SUM(IF('Zones by Method'!V$192:V$378="ngf",('Zones by Method'!B$192:B$378))))/T$38}

The problem is the last T$38. It's incorrect because it’s a total of how many numbers of interest there should be in range 192:378 but some numbers counted are na and the na’s shouldn’t be added or averaged in.

Instead of dividing by T$38, is there another way to know how many non-na numbers are in B192:B378 when "ngf" is in column V, and then use that number to average the B192:B378 "ngf"'s total?

I hope this makes sense.

Sounds like I need a miracle but I've seen many miracles on this board in the past. Crossing my fingers.

Thank you,

Michele
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Please update your profile to indicate which version of Excel you are using.

Have you tried AVERAGEIFS? On a smaller set of data this seems to do what you want:

Code:
=AVERAGEIFS(B2:B52,B2:B52,"<>N/A",C2:C52,"ngf")
 
Upvote 0
Solution
Nope, never tried averageifs. As usual, people on this board never fail to amaze me! Works perfectly! Thanks again!
 
Upvote 0
Hi All,

I kindly request a tweak to that last formula.

For =AVERAGEIFS(B2:B52,B2:B52,"<>N/A",C2:C52,"ngf"), I'd like to also include "agf", i.e. average when either ngf or agf in column C so both are included in the average.

P.S. - I've updated my profile. Thanks for the remind. I use 365 Business and Windows 10, which by the way is making a bunch of us crazy because as consultants we want to use 365 Business licenses from several companies so we can access both company's SharePoint files and Teams amongst other things but it seams Microsoft doesn't play nice. We've now abandoned Teams and are trying to determine the best way to share files - we're a worldwide group.

Cheers,

Michele
 
Upvote 0
How about
Excel Formula:
=AVERAGE(FILTER(B2:B52,(B2:B52<>"N/A")*((C2:C52="ngf")+(C2:C52="agf"))))
 
Upvote 0
Hi Fluff,

Yes that works. One thing though is that it's one of those formulas that only works if you're in the same tab as the cells used to calculate, i.e. I can't say 'Method'!B2:B52, it only works as B2:B52. Thus, I calculate in the same tab and copy the answer to the tab I need it in.

Thanks a bunch,

Michele
 
Upvote 0
That formula will work quite happily on a different sheet, as long as you add the sheet name to all the ranges.
 
Upvote 0
Code:
=AVERAGE(FILTER(Sheet2!B2:B52,(Sheet2!B2:B52<>"N/A")*((Sheet2!C2:C52="ngf")+(Sheet2!C2:C52="agf"))))

As Fluff points out...works from another sheet. Maybe you typed something incorrectly when referencing the sheet with the data?!
 
Upvote 0

Forum statistics

Threads
1,214,383
Messages
6,119,198
Members
448,874
Latest member
Lancelots

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