I’ve recorded the results of the players’ matches in the row. I want to record how many times the results entered this time are for that player, so how can I get them?
Create a Relation linking the player to itself. Then create a Rollup counting the number of rows in the relation.
Follow Jeff’s advice and make sure the rollup is using the relation as its source
Can I assume that you have a different table that is just a list of all players?
Yes. There is players DB. And we input through ‘input UI’ each result using dropdiwn.
I would create a Relation and Rollup column in the Players DB table. Then create a Math column that adds 1 to the Rollup number. Whenever you add a row to the Results table, write the value from that math column.
