Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
kraada wrote:What stat are you trying to edit the color ranges on and seeing it greyed out?
COLUMNS
8_to_30bb
cnt_f_fold_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_f_fold, 1, 0])
cnt_f_call_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_f_call > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_f_bet_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_f_bet, 1, 0])
cnt_f_raise_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_f_raise > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_t_fold_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_t_fold, 1, 0])
cnt_t_call_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_t_call > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_t_bet_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_t_bet, 1, 0])
cnt_t_raise_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_t_raise > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_r_fold_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_r_fold, 1, 0])
cnt_r_call_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_r_call > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_r_bet_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_r_bet, 1, 0])
cnt_r_raise_8_to_30bb
sum(if[if[tourney_hand_player_statistics.cnt_r_raise > 0] AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8, 1, 0])
cnt_vpip_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_vpip, 1, 0])
cnt_hands_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.id_hand > 8, 1, 0])
cnt_walks_8_to_30bb
sum(if[(tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_summary.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND lookup_actions_p.action = '', 1, 0])
STATS
RAFq 8 to 30bb
format_number(((((cnt_f_bet_8_to_30bb + cnt_f_raise_8_to_30bb + cnt_t_bet_8_to_30bb + cnt_t_raise_8_to_30bb + cnt_r_bet_8_to_30bb + cnt_r_raise_8_to_30bb) / (cnt_f_call_8_to_30bb + cnt_f_fold_8_to_30bb + cnt_t_call_8_to_30bb + cnt_t_fold_8_to_30bb + cnt_r_call_8_to_30bb + cnt_r_fold_8_to_30bb + cnt_f_bet_8_to_30bb + cnt_f_raise_8_to_30bb + cnt_t_bet_8_to_30bb + cnt_t_raise_8_to_30bb + cnt_r_bet_8_to_30bb + cnt_r_raise_8_to_30bb)) * 100) * ((cnt_vpip_8_to_30bb / (cnt_hands_8_to_30bb - cnt_walks_8_to_30bb)) * 100)) / 1000, 0, false, false)
kraada wrote:amt_p_effective_stack is no longer in tourney_hand_summary and has moved to tourney_hand_player_statistics - you'll want to update these columns accordingly and that should fix things.
COLUMNS
8_to_30bb
cnt_f_fold_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_f_fold AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_f_call_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_f_call > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_f_bet_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_f_bet AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_f_raise_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_f_raise > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_t_fold_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_t_fold AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_t_call_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_t_call > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_t_bet_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_t_bet AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_t_raise_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_t_raise > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_r_fold_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_r_fold AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_r_call_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_r_call > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_r_bet_8_to_30bb
sum(if[tourney_hand_player_statistics.flg_r_bet AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_r_raise_8_to_30bb
sum(if[tourney_hand_player_statistics.cnt_r_raise > 0 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30, 1, 0])
cnt_vpip_8_to_30bb
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.flg_vpip, 1, 0])
cnt_hands_8_to_30bb
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND tourney_hand_player_statistics.id_hand > 8, 1, 0])
cnt_walks_8_to_30bb
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 8 AND (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) <= 30 AND lookup_actions_p.action = '', 1, 0])
STATS
RAFq 8 to 30bb
((((cnt_f_bet_8_to_30bb + cnt_f_raise_8_to_30bb + cnt_t_bet_8_to_30bb + cnt_t_raise_8_to_30bb + cnt_r_bet_8_to_30bb + cnt_r_raise_8_to_30bb) / (cnt_f_call_8_to_30bb + cnt_f_fold_8_to_30bb + cnt_t_call_8_to_30bb + cnt_t_fold_8_to_30bb + cnt_r_call_8_to_30bb + cnt_r_fold_8_to_30bb + cnt_f_bet_8_to_30bb + cnt_f_raise_8_to_30bb + cnt_t_bet_8_to_30bb + cnt_t_raise_8_to_30bb + cnt_r_bet_8_to_30bb + cnt_r_raise_8_to_30bb)) * 100) * ((cnt_vpip_8_to_30bb / (cnt_hands_8_to_30bb - cnt_walks_8_to_30bb)) * 100)) / 1000
kraada wrote:Nothing else particularly jumps out at me. The only thought that comes to mind that might be worth trying is to try creating variables in the Variables area to simplify down the value expression to something a lot closer to a built in stat and see if that makes any difference.
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 9 guests