So I am trying to make my stat work but seems Im doing a mistake somewhere in the lines I wrote for the stat:
Its for HU play:
- I want to know how many times a player has limped his SB preflop, and faced an AI shove at certain amount of effective stack size and folded.
My stat value expression looks like:
(cnt_p_limp_fold_9_12 / cnt_p_limp_faceraise_ai_9_12) * 100
While columns expressons are:
For: cnt_p_limp_fold_9_12 its:
sum(if[tourney_hand_player_statistics.flg_p_limp AND lookup_actions_p.action = 'CF' AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 9 and 12, 1, 0])
For: cnt_p_limp_faceraise_ai_9_12 its:
sum(if[tourney_hand_player_statistics.flg_p_limp AND tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb BETWEEN 8.5 and 12.49 AND tourney_hand_player_statistics.amt_p_2bet_facing >= tourney_hand_player_statistics.amt_p_effective_stack, 1, 0])
Help will be appreciated.