Help with Formulas and array functions

Joined
Nov 21, 2016
Messages
37
Hi All,

I am wondering if you could help me?

I have a table (TBLSJ) which is looking at athlete Jumps a bit like this:

[TABLE="width: 357"]
<colgroup><col><col><col><col><col></colgroup><tbody>[TR]
[TD]Name[/TD]
[TD]Date[/TD]
[TD]Jump[/TD]
[TD]Type[/TD]
[TD]Male/Female[/TD]
[/TR]
[TR]
[TD]Player 1 [/TD]
[TD]11/03/2018[/TD]
[TD]47[/TD]
[TD]SJ[/TD]
[TD]M[/TD]
[/TR]
[TR]
[TD]Player 2[/TD]
[TD]01/04/2018[/TD]
[TD]54[/TD]
[TD]R[/TD]
[TD]M[/TD]
[/TR]
[TR]
[TD]Player 1 [/TD]
[TD]03/04/2018[/TD]
[TD]57[/TD]
[TD]L[/TD]
[TD]M[/TD]
[/TR]
[TR]
[TD]Player 3[/TD]
[TD]05/05/2018 [/TD]
[TD]46[/TD]
[TD]SJ[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]Player 3[/TD]
[TD]10/05/2018[/TD]
[TD]40[/TD]
[TD]L[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]Player 2[/TD]
[TD]05/05/2018[/TD]
[TD]33[/TD]
[TD]SJ[/TD]
[TD]M[/TD]
[/TR]
</tbody>[/TABLE]

I am wondering do people know a formula that would allow me to analyse the average and Standard deviation of all the SJ type jumps for just the female athletes?

Thank you very much and appreciate any help on this!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
The formulas I provided in your other thread can easily be adapted to this situation:


Book1
ABCDEFGHIJ
1NameDateJumpTypeMale/FemaleTypeSexAverageStd. Dev.
2Player 111/3/201847SJMSJF46#DIV/0!
3Player 21/4/201854RM
4Player 13/4/201857LM
5Player 35/5/201846SJF
6Player 310/5/201840LF
7Player 25/5/201833SJM
Sheet2
Cell Formulas
RangeFormula
I2=AVERAGEIFS(C:C,D:D,G2,E:E,H2)
J2{=STDEV.S(IF(D2:D7=G2,IF(E2:E7=H2,C2:C7)))}
Press CTRL+SHIFT+ENTER to enter array formulas.


The standard deviation in this example is #DIV/0! since only 1 value in your sample table matches your criteria.
 
Upvote 0

Forum statistics

Threads
1,223,577
Messages
6,173,164
Members
452,504
Latest member
frankkeith2233

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