Page 1 of 1

Filter: 3-way as PFR with BB

PostPosted: Tue Jun 15, 2021 1:39 pm
by gscrmn
Hello!

I would like to create a filter for hands like:

- I was the pre flop raiser
- Someone flat
- The big blind cold call

So 3 players saw the flop, being me, the big blind and 1 other

I dont know how to specify one of the other 2 players to be the big blind

Thanks a lot!

Re: Filter: 3-way as PFR with BB

PostPosted: Tue Jun 15, 2021 1:41 pm
by gscrmn
Oh! And the other player (the 1st caller) can NOT be the SB

In other words: I play the pos flop OOP

Thanks!

Re: Filter: 3-way as PFR with BB

PostPosted: Wed Jun 16, 2021 5:02 am
by Flag_Hippo
There isn't a simple filter you can use for the position of callers but you can do this in a custom report with an expression filter like this:

Code: Select all
cash_hand_player_statistics.flg_p_first_raise and cash_hand_summary.str_aggressors_p LIKE '8_' and cash_hand_summary.str_actors_p LIKE '__8' and cash_hand_summary.str_actors_p NOT LIKE '_98'

You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters' (substitute 'cash' with 'tourney' 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.

Re: Filter: 3-way as PFR with BB

PostPosted: Fri Jun 18, 2021 11:01 am
by gscrmn
Awesome, thanks a lot!

highfalutin