Mr.M@r wrote:how can I filter action ... XC flop and turn was XX ? (BB vs IP player) thx
You can filter for a specific players actions via 'Actions & Opportunities -> {Street} -> {Street} Action Sequence'. If you are going to be filtering from the perspective of the IP player then you would filter for a flop bet,
NOT taking a second flop action and then checking the turn. You should also add a built-in filter for being in position on the flop.
Is there a specific preflop scenario you want? Do you want single raised pots only or do you want to include hands where the BB 3bets and IP player calls? Assuming you want single raised pots where the BB called an open raise from the IP player then that will require an expression filter as there isn't a built-in filter for the position of callers:
- Code: Select all
cash_hand_summary.str_aggressors_p LIKE '8_' and cash_hand_summary.str_actors_p LIKE '_8'
You can use this expression filter in a
custom report by clicking on the 'Filters' link and selecting 'Add New Expression Filters' and you will need to replace "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.