Count hands when a specific RFI size is used by position
Posted: Mon Apr 08, 2024 6:40 pm
So, I managed to create a column with this definition:
sum(if[position_type = 2 and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.amt_p_raise_made = 2 * cash_limit.amt_bb, 1, 0])
It counts the amount of times a player raised to 2bb from EP. It seems to be working OK. Now, when I try to modify it to count the amount of times a players raised to 2.5bb from EP, it doesn't work anymore. I only modified on variable:
sum(if[position_type = 2 and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.amt_p_raise_made = 2.5 * cash_limit.amt_bb, 1, 0])
Where am I making a mistake?
sum(if[position_type = 2 and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.amt_p_raise_made = 2 * cash_limit.amt_bb, 1, 0])
It counts the amount of times a player raised to 2bb from EP. It seems to be working OK. Now, when I try to modify it to count the amount of times a players raised to 2.5bb from EP, it doesn't work anymore. I only modified on variable:
sum(if[position_type = 2 and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.amt_p_raise_made = 2.5 * cash_limit.amt_bb, 1, 0])
Where am I making a mistake?