Ah, ok thanks, Can you check this stat for me as well?
Does the below match the following description: The amount of times player has called at least once post-flop over the amount of times player has been post-flop.
(cnt_postf_call / cnt_postf_saw) * 100
I have 2 custom columns
1)cnt_postf_call
sum(if[(holdem_hand_player_statistics.cnt_f_call)+(holdem_hand_player_statistics.cnt_t_call)+(holdem_hand_player_statistics.cnt_r_call)>=1,1,0])
2)cnt_postf_saw
sum(if[holdem_hand_player_statistics.flg_f_saw OR holdem_hand_player_statistics.flg_t_saw OR holdem_hand_player_statistics.flg_r_saw, 1, 0])