Quote:
Originally Posted by WhiteRider
Please either post the expressions you are using for your columns here, or export your stat and attach it to a Support ticket, and explain exactly what you want to calculate and we'll help you fix it.
I got this from the thread I linked to earlier. I'm using this for the number of times an opponent calls a raise, checks through the flop and then bets the turn.
sum( if[ holdem_hand_player_statistics.position = 8 and lookup_actions_p.action = 'c' and lookup_actions_f.action = 'x' and lookup_actions_t.action like 'b%', 1, 0 ] )
This is the number of opportunities to bet the turn after calling a raise and checking through the flop. I'm sure this is likely where I screwed up.
sum( if[ holdem_hand_player_statistics.position = 8 and lookup_actions_p.action = 'c' and lookup_actions_f.action = 'x', 1, 0 ] )