Page 1 of 1

Filter question

PostPosted: Sat Sep 04, 2021 5:48 am
by chessfun
Hey guys, I tried to filter for SB vs BB and vice versa with 3 players dealt. I have two questions : How can I set that the BU always folds + in the filter options, who is the active player? The dude who puts first action in the pot or is it always me? Thanks for the help!

Re: Filter question

PostPosted: Sat Sep 04, 2021 1:24 pm
by Flag_Hippo
Most filters are from the perspective of the active player selected for the report. You can filter for the position of aggressors on a given street via 'Hand Details -> Player Position' but there are no built-in filters for the positions of players who call or fold so you would need to do this in a custom report with an expression filter:

Code: Select all
tourney_hand_summary.str_actors_p NOT LIKE '0%'

This expression filter specifies that the button was not the first player to VPIP. You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters' (substitute 'tourney' with 'cash' if you are in a tournament report). This post has more information on how the actors and aggressors strings work if you want to filter for different situations.