Hi,
I would like, % of time a player fold on the flop when facing bet > 50 % of the pot when 4>pot >9
I created thise, expressions valids but there is no numbers.
Stat
( ffbf_opp49 ) * 100 / ( fbf_opp49 )
Columns
ffbf_opp49
sum( if[holdem_hand_player_detail.val_f_bet_facing_pct > 50 AND holdem_hand_summary.amt_pot BETWEEN ( 4*holdem_limit.amt_bb) AND ( 9*holdem_limit.amt_bb) AND (lookup_actions_p.action SIMILAR TO '(F|XF)%'), 1, 0])
fbf_opp49
sum( if[holdem_hand_player_detail.val_f_bet_facing_pct > 50 AND holdem_hand_summary.amt_pot BETWEEN ( 4*holdem_limit.amt_bb) AND ( 9*holdem_limit.amt_bb) , 1, 0])
Thanks for Help
