How does it work?
In the table, you can find the number of passing attempts and ratings for each player. It helps analyze how the player passed in a particular rotation when he had troubles and how that can be used during the game.
In the tables below, you can see play-by-play passing in rotations. You can find the passing player, pass rating, passing zone, and passing effect there. These plays can be filtered by passing player, zone, and effect.
In this example, you can see that the players were passing well in rotation 4, the main target was player #12, who was struggling a bit. However, in rotation 2, all players had difficulties passing the ball, which was probably the result of the excellent serving player of the other team. The most balls were served into the zones 5 and 6 in this rotation.
Important Formulas in this spreadsheet:
=IF(VSCOUNT(VSCELL("(1)R",$C3))>0,VSCOUNT(VSCELL("(1)R",$C3)),"")
This formula shows a player's passing attempts from cell C3 if this number is bigger than 0. If this player didn't pass the ball, the cell remain empty.
=ROUND( ( (VSCOUNT(VSCELL("(1)R#",$C3)) * 4 ) + (VSCOUNT(VSCELL("(1)R+",$C3)) * 3 ) + (VSCOUNT(VSCELL("(1)R!",$C3)) * 2) + (VSCOUNT(VSCELL("(1)R-",$C3)) * 1 ) + (VSCOUNT(VSCELL("(1)R/",$C3)) * 0.5 ) ) / VSCOUNT(VSCELL("(1)R",$C3)),2)
This formula counts the average of the receptions of player from cell C3 by counting the number of perfect receptions and multiplying it by 4, then adding the number of good receptions multiplied by 3, then the added number of neutral receptions multiplied by 2, the number of negative receptions multiplied by 1, and the number of overpasses multiplied by 0.5. This sum is divided by the number of all player receptions from cell C3. The result is rounded to two decimal places.
=VSMAP(VSPLAYS("*R;*Z1",VSRANGE("1:1")),"player")
This formula gives the player who received the first ball in the game in rotation 1.
=VSMAP(VSPLAYS(VSCELL("(1)R(2)0;*Z1",$E$11,$E$12),VSRANGE($E16&":"&$E16)),"effect")
This formula gives the effect of the reception in rotation 1 of the player from cell E11, in the zone from cell E12, while the play was in the range marked in cell E16.
=VSMAP(VSPLAYS(VSCELL("(1)R(2);*Z1",$E$11,$E$13),VSRANGE($E16&":"&$E16)),"startZone")
This formula gives the starting zone of the reception in rotation 1 of the player from cell E11, with effect from cell E13, while the play was in range marked in cell E16.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article