Hi Pokertracker Staff I'm continue to try to arrive to my objective to have stats filtered for effective stacks and thanks to your help I can do something I know what I can do and what I can't do with pokertracker at the moment but suddenly I've remembered the use of the Live amt BB in the color condiction so I have this question:
I have these custom stats :Raise First In_eff_1_3: (cnt_p_raise_first_in_eff_1_3 / cnt_p_open_opp_eff_1_3 ) and
Raise First In_eff_4_6 : (cnt_p_raise_first_in_eff_4_6 / cnt_p_open_opp_eff_4_6 ) * 100
I've notced the Live AMt BB stat with it's colummns (live_amt_stack / live_amt_bb) so I'm wondering if it's possible use it to join the two cnt_p_raise_first_in_eff columns above.
I want to say that I have cnt_p_raise_first_in_eff_1_3 :
sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 1 and 3, 1, 0])
and the cnt_p_raise_first_in_eff_4_6 :
sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 4 and 6, 1, 0])
Is it possible join them using the (live_amt_stack / live_amt_bb) ? I'm not expert of sql or query but I mean something likecnt_p_raise_first_in_eff_1-6 :if (live_amt_stack / live_amt_bb) BETWEEN 1-3 Then... use "cnt_p_raise_first_in_eff_1_3", IF (live_amt_stack / live_amt_bb) BETWEEN 4-6 ..THEN....yes my objective always if it's possible it's have only one first in raise stat on the hud filtered automatically without recurring at the build of a dedicated popup. If it's possible please try to join the two cnt_p_raise_raise_first_in_eff above with the (live_amt_stack / live_amt_bb) value expression so that I can have a single colums but filtered like I need and I thing then it will possible for me go alone to join more columns.