i created this column (positional 3bet opp for each position in this case hijack)
sum(if[holdem_hand_player_statistics.flg_p_3bet_opp AND holdem_hand_player_statistics.position = 2 , 1, 0])
But i don't understand how to create a colum for times the player called the 3bet opp any help?
there is a colum that with the name cnt_p_pfr_call and the description Number of times player called a preflop raise.
But it doesn't seem clear to me what constitutes a raise for this colum, for example maybe a player had the 3bet opp, did the 3bet, faced a 4bet, and called, that could constitute a raise that was called?
if that doesn't count as a raise, would this work?
sum(if[holdem_hand_player_statistics.flg_p_3bet_opp AND holdem_hand_player_statistics.flg_p_fold = false AND holdem_hand_player_statistics.cnt_p_raise=0 AND holdem_hand_player_statistics.position = 2, 1, 0])
it doesn't seem to wrk because the holdem_hand_player_Statistics.flg_p_fold , can be true anyway, for example a player called a 3bet opp, face a squeeze, and then fold, then it would be true, but for the porpouses of my statics, HE DID CALL.
