What did you put in the Format Expression for your new stat?
Those squares indicate some character that can't be displayed properly.
Eav1981 wrote:I dont know if its possible or not but i figured it wouldnt hurt to ask. Is there a way to see the Hand Details i played when the filter (Ax) is true? without having to sort through all other hands?
To see the individual hands which fit this criteria you will need to build a new custom stat in the Holdem Cash Hands section.
There are two approaches.
1. Build a boolean (true/false) stat to show when all the criteria are true.
See
this post for details.
You can then add that stat to the built-in reports like Known Starting Hands Detail or Position Hands Detail. e.g. if you add it to Position Hands Detail (on the Positions tab) and select Small Blind at the top and add normal
Filters for the rest of the criteria then it will list all of the hands where the preflop aggressor (PFA) was in position 3.
Equally, you could just build a HCH stat to show the position of the PFA and add that to the report, and sort the column by it.
e.g. in HCH
val_p_pfa_position = holdem_hand_player_detail.val_p_raise_aggressor_pos
(Actually, I already have that myself.. I'll attach it)
This will display the position of the preflop aggressor, so if you add other filters and sort by this column you can see the hands you want.
2. Now that you have the above PF Aggressor Pos stat you can use it in a Custom Report (again, Holdem Cash Hands section) to filter to show only the hands you are interested in.
Add a filter expression:
val_p_agg_pos = 3
..and add Simple Filters for the rest of the conditions.
Custom Reports guideThe new
custom reports and stats guide I'm working on also has info on building custom reports.