Hello, I am creating these columns, how could I make one that is, for example, size equal to or greater than 66% pot and less than 75% pot?
thank you so much
Minbet flop %
(cnt_minbet_flop / cnt_f_cbet) * 100
cnt_minbet_flop
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct < 40)
, 1, 0])
cnt_cbet_flop_mediopot
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 50)
, 1, 0])
cnt_cbet_flop_dostercios
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 66)
, 1, 0])
cnt_cbet_flop_trescuartos
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 75)
, 1, 0])