cnt_postflop_fold_opp =
sum( if[ (holdem_hand_player_detail.amt_f_bet_facing + holdem_hand_player_detail.amt_f_raise_facing + holdem_hand_player_detail.amt_t_bet_facing + holdem_hand_player_detail.amt_t_raise_facing + holdem_hand_player_detail.amt_r_bet_facing + holdem_hand_player_detail.amt_r_raise_facing) > 0), 1, 0 ] )
There's too many closed parentheses in that, so it can't be validated, so I removed one and used this:
cnt_postflop_fold_opp =
- Code: Select all
sum( if[ (holdem_hand_player_detail.amt_f_bet_facing + holdem_hand_player_detail.amt_f_raise_facing + holdem_hand_player_detail.amt_t_bet_facing + holdem_hand_player_detail.amt_t_raise_facing + holdem_hand_player_detail.amt_r_bet_facing + holdem_hand_player_detail.amt_r_raise_facing) > 0, 1, 0 ] )
And that doesn't work. One player has stats that he folded postflop 120% (6/5) of the time. I get the point that I don't want to include hands he checked down. The cnt_fold_postflop column is right, but the cnt_postflop_fold_opp column is wrong. Any idea?
Does it have anything to do with the fact that one column uses holdem_hand_player_statistics and the other uses holdem_hand_player_detail?