Read moreHello! I admit it's not optimized for sharing, this is just a personal doc I've been using.
Basically each row is a separate game, tracked via the Game column. For each game I record the date I played it on and the number of points in my active region, with a new column for each region.
Finished regions I highlighted green, but I copy the values down dozens of rows to keep the Diff calculation happy, which is just a a calculation of (sum of current row points) - (sum of previous row points), which tells me the number of points I earned that game.
The region column headers are just <region name> (points to complete the region) (number of games it took to complete the region).
Finally, the first column is just sectioned into which week of the event it was played on, since the points earned per game increase each week.
Ultimately, all I really care about is points per game ("Diff" column) and how many games it took to complete each region.
...
Thank you for your explanation!