I am trying to calculate how many "WINS" a player has against how many "GAMES" they played. Figuring out how to calculate how many "GAMES" they played was relatively easy, I used this formula:
Here is a picture to help make sense of what I am doing...
Link to the image of my spreadsheet since the image file was too big to attach in this post)
I've been trying for 3 days, but I have not been able to figure out how to calculate the "WINS" part. I am using COUNTIFS for multiple criteria, but it only works when the name of the player is 1st on the list of the range (of 4 players). Unless the name is the first in the list of 4, it won't calculate a win. Here is the formula I am working with:
This formula works fine if the first name in the range coincides with the cell it is pointing to for the name, but if the name is the 2nd, 3rd, or 4th in the list...it returns a 0.
Please help!
Thank you,
Nathan
Excel Formula:
=COUNTIF({$K$3:$K$10,$K$12:$K$19,$R$3:$R$10,$R$12:$R$19,$Y$3:$Y$10,$Y$12:$Y$19,$AF$3:$AF$10,$AF$12:$AF$19,$AM$3:$AM$10,$AM$12:$AM$19},C3)
Link to the image of my spreadsheet since the image file was too big to attach in this post)
I've been trying for 3 days, but I have not been able to figure out how to calculate the "WINS" part. I am using COUNTIFS for multiple criteria, but it only works when the name of the player is 1st on the list of the range (of 4 players). Unless the name is the first in the list of 4, it won't calculate a win. Here is the formula I am working with:
Excel Formula:
=COUNTIFS($K$3:$K$6,$C$3,$O$3:$O$6,1)+COUNTIFS($K$7:$K$10,$C$3,$O$7:$O$10,1)+COUNTIFS($K$12:$K$15,$C$3,$O$12:$O$15,1)+COUNTIFS($K$16:$K$19,$C$3,$O$16:$O$19,1)+COUNTIFS($R$3:$R$6,$C$3,$V$3:$V$6,1)+COUNTIFS($R$7:$R$10,$C$3,$V$7:$V$10,1)+COUNTIFS($R$12:$R$15,$C$3,$V$12:$V$15,1)+COUNTIFS($R$16:$R$19,$C$3,$V$16:$V$19,1)+
Please help!
Thank you,
Nathan