Pool Stats

SquizzleKicks

New Member
Joined
Jun 8, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am recording individual player stats for my pool team and something I would like to incorporate into this is a current winning or losing streak that will update automatically from me populating a table.

I have mocked up a table as an example, what the formula to do is check the last populated cell and check if it's a 1 or 0, and then check if the previous cell is the same and so on adding them up.

Pool Stats.xlsx
ABCDEFGHIJKLMNOPQ
1Game
2PlayerStreak12345678Input 1 for Win & 0 for Loss into this table
3James1
4Steve1
5Scott11
6Andrew 00
7Neil1
8Skibbs0
9Adam01
10Luke0
11Ben1
12
13Game
14PlayerStreak12345678
15JamesW       Output: Green "W" if value =1, Red "L" if value = 0
16SteveW       & leave blank if cell is blank
17ScottWW      
18Andrew LL      In streak column output:
19NeilW       Green number for current W streak
20SkibbsL       or Red number for current L Streak
21AdamLW      
22LukeL       
23BenW       
Sheet5
Cell Formulas
RangeFormula
D15:K23D15=IF(ISBLANK(D3), "",IF(D3=1, "W", "L"))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D15:K23Cell Valuecontains "L"textNO
D15:K23Cell Valuecontains "W"textNO



Any help in setting this up would be appreciated.

Regards

Adam
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
The top table is where I will be populating with the results and the bottom table is what I will be sharing with the team.
 
Upvote 0

Forum statistics

Threads
1,215,762
Messages
6,126,736
Members
449,334
Latest member
moses007

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