Filter player summaries to specific group of players?
Posted:
Fri May 08, 2020 11:34 am
by qwerty2k
Hey, a rather newbie question but...I play a fairly regular tournament with friends online at Pokerstars, how can I see a report/summary of stats such as number of hands, vpip, pfr, steal attempts etc for just these group of players? We usually play the same buy-in but not all the time so I can't filter based on buy-in but I can't see an option to filter based on player name? We be ideal if I could see it by tournament or overall.
Thanks,
Scott
Re: Filter player summaries to specific group of players?
Posted:
Fri May 08, 2020 12:52 pm
by Flag_Hippo
You can go to
'My Reports', create an 'All Players' report, add the statistics you want to see and filter from there. To filter by player name use this expression filter:
- Code: Select all
player.player_name = 'name1' OR player.player_name = 'name2'
You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters'. Replace 'name1' and 'name2' e.t.c with the screen names you want to see and leave the single quotes - those are needed. You can also add additional ORs if you want to view the data for more players at once. If you want to filter by tournament number:
- Code: Select all
​tourney_summary.tourney_no = 'Tourney Number Here'
Re: Filter player summaries to specific group of players?
Posted:
Fri May 08, 2020 2:51 pm
by qwerty2k
Flag_Hippo wrote:You can go to
'My Reports', create an 'All Players' report, add the statistics you want to see and filter from there. To filter by player name use this expression filter:
- Code: Select all
player.player_name = 'name1' OR player.player_name = 'name2'
You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters'. Replace 'name1' and 'name2' e.t.c with the screen names you want to see and leave the single quotes - those are needed. You can also add additional ORs if you want to view the data for more players at once. If you want to filter by tournament number:
- Code: Select all
​tourney_summary.tourney_no = 'Tourney Number Here'
Thank you for the quick response! worked perfectly