Im trying to take all of the points Jane Smith has earned in the Results table so far and total that number up in the Players table under Total Points (which would be 2,950 right now she has a place holder of 100).
Create a relation linking the player id in the players table to the player id in the results table. Then create a Rollup column that uses the relation to get a sum of points from results. Then create a math column to add the two values together.
Unfortunately all of the rows have the same number in the Rollup output, anything else I should try?
It seems to be totaling all of the numbers and not by the player per row.
Thank you very much @Himaladin
This is fantastic Ive been trying this for quite sometime and I now see where I was going wrong (I have to go through the relation to the points) absolutely amazing. Thank you so much!