Maria88 wrote:Yeah it worked this tine, but the all in equity adjusted column doesn't appear
If you are referring to the statistics in the top half of the report then please note that this particular report requires additional filtering behind the scenes to function properly and as a result regular statistics cannot be added to it.
Maria88 wrote:The total all in adjusted value doesn't appear realistic... Like 200k cev in my favour, it is certainly less
The 'Hero vs Villain' report shows all hands where chips were exchanged between you and a specific villain but that doesn't mean you ended up going all-in against that player if you are playing multiway. Another option to review that data is to use a custom report:
Guide: Creating My Reports
Use the following expression filter in a 'Player' report to see data from hands where the named villain was all-in. Add a simple filter for you seeing the showdown as well along with any other statistics you want to see into the report:
- Code: Select all
( 0 < (SELECT count(hhps2.id_hand) FROM cash_hand_player_statistics hhps2 WHERE hhps2.id_hand = cash_hand_player_statistics.id_hand AND hhps2.id_player = (SELECT p.id_player FROM player p WHERE player_name='Villain') AND (hhps2.val_equity > 0) ) )
You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters'. You will need to replace "cash" with "tourney" if you are in a tournament report.