I have a google sheet with values that is getting populated
A B C D E F G H
Top scorers Date Player l Player 2 Player 3 Player 4
13 Jan 2019 1 1 1
20 Jan 2019 2 1 1
the idea is: each match day I will enter the date of the match and number of goals that each player scored, if new player score I will just put his name in new column and number of goal on that date. If any player not score that day, I will just leave that cell blank. Then I want to populate first column "Top scorers" with ranking of Player scored. Expected result will look like this:
A B C D E F G H
Top scorers Date Player l Player 2 Player 3 Player 4
Player 1: 3 13 Jan 2019 1 1 1
Player 2: 2 20 Jan 2019 2 1 1
Player 3: 1
Player 4: 1
It will automatically updated with new data input. How could I make this? I have a look at Pivot Table but looks like it is hard to archive this result.
According to the description of what you're trying to accomplish and the Google Sheet shared.
You need to break your problem down into several subtasks:
My solution is pretty verbose but it seems to work. Please don't hesitate to ask if you have any questions or if clarifications are needed.