Average problem

SERVECOLD

Board Regular
Joined
Mar 19, 2009
Messages
50
hi not sure how to get round this in column F ive been trying to find away to find the average of the other horses but can only come up with the way that ive done it
can it be done any other way thanks
Excel Workbook
ABCDEFGHIJKL
120/09/2011911%
2TIMECOURSEHORSEMSTDSLR
314:00:00BeverleyCat O' Nine Tails2418.9252142121000.291.4469%2.821.38
414:00:00BeverleyIndochina2378.64152148356850.172.5739%8.315.74
514:00:00BeverleyValantino Oyster2368.044921501160390.136.3516%26.9920.64
614:00:00BeverleyCommander Veejay2173.00312178673680.144.4522%15.4711.02
714:00:00BeverleyGoodmanyourself2064.885621931156390.137.2814%26.3719.08
814:00:00BeverleyMax My Boy2033.085121981036930.136.7515%23.5916.85
914:00:00BeverleyTunduce2030.96142198284390.192.6438%6.473.83
1014:00:00BeverleySally Anne1948.28212210409190.173.4729%9.265.79
Sheet1
Excel 2002
Cell Formulas
RangeFormula
F3=(D4+D5+D6+D7+D8+D9+D10)/7
F4=(D3+D5+D6+D7+D8+D9+D10)/7
F5=(D3+D4+D6+D7+D8+D9+D10)/7
F6=(D3+D4+D5+D7+D8+D9+D10)/7
F7=(D3+D4+D5+D6+D8+D9+D10)/7
F8=(D3+D4+D5+D6+D7+D9+D10)/7
F9=(D3+D4+D5+D6+D7+D8+D10)/7
F10=(D3+D4+D5+D6+D7+D8+D9)/7
G3=(D3*E3)+(F3/400)
G4=(D4*E4)+(F4/400)
G5=(D5*E5)+(F5/400)
G6=(D6*E6)+(F6/400)
G7=(D7*E7)+(F7/400)
G8=(D8*E8)+(F8/400)
G9=(D9*E9)+(F9/400)
G10=(D10*E10)+(F10/400)
H3=(F3/G3)+$C$1
H4=(F4/G4)+$C$1
H5=(F5/G5)+$C$1
H6=(F6/G6)+$C$1
H7=(F7/G7)+$C$1
H8=(F8/G8)+$C$1
H9=(F9/G9)+$C$1
H10=(F10/G10)+$C$1
I3=H3*E3
I4=H4*E4
I5=H5*E5
I6=H6*E6
I7=H7*E7
I8=H8*E8
I9=H9*E9
I10=H10*E10
J3=1/I3
J4=1/I4
J5=1/I5
J6=1/I6
J7=1/I7
J8=1/I8
J9=1/I9
J10=1/I10
K3=(G3/F3)/2
K4=(G4/F4)/2
K5=(G5/F5)/2
K6=(G6/F6)/2
K7=(G7/F7)/2
K8=(G8/F8)/2
K9=(G9/F9)/2
K10=(G10/F10)/2
L3=K3-I3
L4=K4-I4
L5=K5-I5
L6=K6-I6
L7=K7-I7
L8=K8-I8
L9=K9-I9
L10=K10-I10
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try the following array formula (confirm with ctrl+shift+enter), change the ranges to accomodate your full dataset:
=AVERAGE(IF($A$3:$A$10=A3,IF($B$3:$B$10=B3,IF($C$3:$C$10<>C3,$D$3:$D$10))))
 
Upvote 0
F3 = (sum($D$3:$D$10) - D3)/7
F4 = (sum($D$3:$D$10) - D4)/7
F5 = (sum($D$3:$D$10) - D5)/7
...

this assumes that there are always the same number of horses in the race.

you could enhance this by replacing the range with a named range the average is the sum of the named range (less this horse) divided by the count of the named range (less 1 for this horse)

F3 = (sum(NamedRange) - D3)/(count(NamedRange)-1)
F4 = (sum(NamedRange) - D4)/(count(NamedRange)-1)

And then set the range for NamedRange using VBA (or manually)
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,813
Members
452,945
Latest member
Bib195

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