Excel formula needed please

Caporegime
Joined
1 Dec 2010
Posts
53,766
Location
Welling, London
Should be simple enough for some of you experts.

I have a column of win/loss indicated by a W or L in each cell.

Is there a simple formula that I can put in a cell to calculate the win percentage please?
 
Not elegant, but it should give you a starting point:-

Code:
=(COUNTIF(H4:H15,"W") / ((COUNTIF(H4:H15,"W") + (COUNTIF(H4:H15,"L")))) * 100)


Change the H4:H15 range to suit your spreadsheet.
 
Back
Top Bottom