Still, if I check amt_won for several individual hands, it will return the amt of chips individually for each hand. Could you please explain why exactly is it a problem that the stat takes different values across different hands? I think I am not exactly understanding what is different from 'amt_won' - there, my understanding is that it calculates the amt of chips won in each single hand and then when graphing you just want to graph a cumulative sum. Thank you, that's the kind of insight into how the stats work I was looking for. You may be able to get it to work by doing the whole calculation in a column, but you're mixing different levels of data (hand data and overall tournament data) and I think that still won't work. Your expression wants to have a single value, but across all hands for a player there would be multiple values so the result would be undefined.įor example in a Player stat 'amt_won' is the total amount of chips won or lost across all of the hands, but your 'amt_starting_stack' is the starting stack in a single hand, and that won't work. WhiteRider wrote:I'm don't think that that will work as a Player stat.