Count average grounds of a selection of towns

RubenFind

New Member
Joined
Jul 31, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi all,

Hope you can help me with the following issue. I want to calculate the average number of grounds in a selection of cities (E2:E4). In this example, the number of grounds per city are given in column C.
However, I don't succeed in getting the correct number, because it takes into account every type of sports (3*8 + 2*5 + 1*8). In this example it needs to be 21 (8+5+8). Selecting one type of sports is not possible, because not every town has the same sports (e.g. football is not in Mosbach, and golf is not in Aachen). The zero's in column C must be left out. To illustrate my issue, I simplified the example. However, in my dataset, the number of towns and the selection of cities (in collumn E) are quite large, what makes it hard to calculate the averages manually.
Does anyone have a solution?

Thank you very much in advance.
 

Attachments

  • Issue Excel.png
    Issue Excel.png
    28.7 KB · Views: 15

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
try
=SUMIF(A$1:C$18,E2,C$1:C$18)/(COUNTIF(A$1:A$18,E2)-COUNTIFS(A$1:A$18,E2,C$1:C$18,0))
 
Upvote 1
try
=SUMIF(A$1:C$18,E2,C$1:C$18)/(COUNTIF(A$1:A$18,E2)-COUNTIFS(A$1:A$18,E2,C$1:C$18,0))
Thanks a lot for helping me out! The formula gives 8 as a result. However, the average of the 3 towns (Aachen, Mosbach, Nürnberg) should be 7. It seems that the formula now only gives the average grounds of Aachen. Any idea how to adjust the formula so that it give the average of all the three towns in column E?

Thanks again! Really appreciate it.
 

Attachments

  • Issue Excel_2.png
    Issue Excel_2.png
    29.6 KB · Views: 4
Upvote 0
If you drag the formula down to F3 & F4 it gives the average for each town
then sum that and divide by 3
F7 =sum(F2:F4)/3
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,068
Members
449,091
Latest member
remmuS24

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