Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by Naeco » Wed Jan 24, 2024 6:53 am
Hi,
Is it possible de create a stats report of Hero but filter the stats against specific opponents ?
Thanks
-
Naeco
-
- Posts: 35
- Joined: Tue Jun 12, 2018 7:43 am
by Flag_Hippo » Wed Jan 24, 2024 2:40 pm
To see your stats/hands when a specific player was dealt in you can use this expression filter:
- Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.id_player = p.id_player and p.player_name = 'Villain')
Replace Villain with a screen name and leave the single quotes - those are needed. Note that this kind of report can take a little while to complete. You will need to replace "cash" with "tourney" if you are in a tournament report.
-
Flag_Hippo
- Moderator
-
- Posts: 15537
- Joined: Tue Jan 31, 2012 7:50 am
by Naeco » Fri Jan 26, 2024 8:13 am
Thanks !
-
Naeco
-
- Posts: 35
- Joined: Tue Jun 12, 2018 7:43 am
by expost » Fri Mar 15, 2024 12:54 pm
Flag_Hippo wrote:To see your stats/hands when a specific player was dealt in you can use this expression filter:
- Code: Select all
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.id_player = p.id_player and p.player_name = 'Villain')
Replace Villain with a screen name and leave the single quotes - those are needed. Note that this kind of report can take a little while to complete. You will need to replace "cash" with "tourney" if you are in a tournament report.
Can you please clarify where this change is made? Ty
-
expost
-
- Posts: 18
- Joined: Wed Sep 06, 2023 2:04 pm
by Flag_Hippo » Sun Mar 17, 2024 7:36 am
What change? The change for the name or the change for tournament hands? For the name you would need to substitute what I have highlighted in red for the player name you want:
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, player p where chps.id_player = p.id_player and p.player_name = 'Villain')
-
Flag_Hippo
- Moderator
-
- Posts: 15537
- Joined: Tue Jan 31, 2012 7:50 am
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 79 guests