using a 'COUNT' function

Joined
Nov 21, 2016
Messages
37
Hi everyone I need some help.

I have a table (called TBLSJ) of data which looks like this:

[TABLE="width: 307"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD]Date[/TD]
[TD]Name[/TD]
[TD]Jump height[/TD]
[TD]Type of jump[/TD]
[/TR]
[TR]
[TD]01/02/2018[/TD]
[TD]Player 1[/TD]
[TD]49[/TD]
[TD]SJ[/TD]
[/TR]
[TR]
[TD]01/02/2018[/TD]
[TD]Player 1[/TD]
[TD]48[/TD]
[TD]Left[/TD]
[/TR]
[TR]
[TD]01/02/2018[/TD]
[TD]Player 1[/TD]
[TD]65[/TD]
[TD]Right [/TD]
[/TR]
[TR]
[TD]05/07/2018[/TD]
[TD]Player 1[/TD]
[TD]59[/TD]
[TD]Left[/TD]
[/TR]
[TR]
[TD]05/07/2018[/TD]
[TD]Player 1[/TD]
[TD]59[/TD]
[TD]Right [/TD]
[/TR]
[TR]
[TD]05/07/2018[/TD]
[TD]Player 1[/TD]
[TD]60[/TD]
[TD]SJ[/TD]
[/TR]
[TR]
[TD]03/09/2018[/TD]
[TD]Player 1[/TD]
[TD]66[/TD]
[TD]right [/TD]
[/TR]
[TR]
[TD]03/09/2018[/TD]
[TD]Player 1[/TD]
[TD]51[/TD]
[TD]SJ[/TD]
[/TR]
[TR]
[TD]03/09/2018[/TD]
[TD]Player 1[/TD]
[TD]48[/TD]
[TD]Left[/TD]
[/TR]
[TR]
[TD]04/10/2018[/TD]
[TD]Player 1[/TD]
[TD]57[/TD]
[TD]Left[/TD]
[/TR]
[TR]
[TD]04/10/2018[/TD]
[TD]Player 1[/TD]
[TD]49[/TD]
[TD]SJ[/TD]
[/TR]
[TR]
[TD]04/10/2018[/TD]
[TD]Player 1[/TD]
[TD]51[/TD]
[TD]Right [/TD]
[/TR]
</tbody>[/TABLE]

I was wondering if there is an easy 'count' function to find the number of 'SJ' Jumps player 1 completed

thank you very much I would appreciate your help on this
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Something like:

=STDEV(IF($B$2:$B$13=F2,IF($D$2:$D$13=G2,$C$2:$C$13)))

You MUST enter this with CTRL-SHIFT-ENTER if you want the correct result!
 
Upvote 0

Forum statistics

Threads
1,223,229
Messages
6,170,881
Members
452,364
Latest member
springate

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