mcontact wrote:how can I create a filter, where in a 3handed game the BU folds, the SB limps and I have the option to raise in BB. I made it with "First Action Opportunity to raise limpers", but that includes button limps. How do I get rid of the BU limps?
And how do I get my BB winrate overall in SB vs BB, when I am BB and BU folds?
There isn't a built-in filter you can use for the position of callers or limpers but you can do this in a
custom report with a custom expression filter:
- Code: Select all
tourney_hand_summary.str_aggressors_p NOT LIKE '89%' and tourney_hand_summary.str_actors_p LIKE '9%'
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 cash report).
This post has more information on how the actors and aggressors strings work if you want to filter for different situations. You will need to add a built-in filter for your own position being in the BB.
mcontact wrote:And how do I get my BB winrate overall in SB vs BB, when I am BB and BU folds?
Create a custom 'Player' report, add the statistics to see you want such as BB/100 and use this expression filter:
- Code: Select all
tourney_hand_summary.str_actors_p NOT LIKE '0%'
You will still need to add a built-in filter for your own position being in the BB along with another filter for there being 3 players dealt into the hand.