Hi,
i want to count how often in HU SB limps and fold vs BB allin preflop
when the SB has less chips than BB it works, but when SB has more chips than BB it don't work. What's wrong with this?
Expression:
(limp_fold_vs_AI / limp_fold_vs_AI_opp) * 100
column: limp_fold_vs_AI
sum(if[tourney_hand_summary.cnt_players = 2
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_face_raise
AND tourney_hand_player_statistics.enum_face_allin_action='F', 1, 0])
column: limp_fold_vs_AI_opp
sum(if[tourney_hand_summary.cnt_players = 2
AND tourney_hand_player_statistics.position = 9
AND tourney_hand_player_statistics.flg_p_limp
AND tourney_hand_player_statistics.flg_p_face_raise
AND tourney_hand_player_statistics.enum_face_allin='P', 1, 0])