That information does not get entered on the definitions tab for your custom statistic. If you look at the existing 'Value Expression' for WTSD you will see this:
- Code: Select all
(cnt_wtsd / cnt_f_saw) * 100
cnt_wtsd and
cnt_f_saw are columns which are the building blocks of statistics and you can view those by clicking on the 'Columns' tab. The
cnt_wtsd column counts how often a player gets to showdown and the
cnt_f_saw column counts how often a player sees the flop so if you divide
cnt_wtsd by
cnt_f_saw and multiply by 100 (as per the value expression) it gives the percentage of how often a player gets to showdown given that they saw the flop. Now what you need to do is edit these columns to exclude the preflop all-ins and you do that by first duplicating and editing the built-in columns. For example:
cnt_wtsd- Code: Select all
sum(if[tourney_hand_player_statistics.flg_showdown, 1, 0])
gets changed to:
cnt_wtsd_no_pf_ai (you can give the custom column a different name if you prefer).
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_showdown AND lookup_actions_f.action LIKE '_%', 1, 0])
cnt_f_saw- Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_saw, 1, 0])
gets changed to:
cnt_f_saw_no_pf_ai- Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_saw AND lookup_actions_f.action LIKE '_%', 1, 0])
The value expression for your custom statistic can now be created with:
- Code: Select all
(cnt_wtsd_no_pf_ai / cnt_f_saw_no_pf_ai) * 100