Page 1 of 1

statistical indicator that counts the number

PostPosted: Fri Nov 26, 2021 3:20 pm
by Vladislav1975
I want to create a statistical indicator that counts the number of hands of a player, the sum of the stacks of players in which is equal to 67500.
I wrote a column:
"
count
(
(
SELECT SUM (tournament hand_player_statistics.amt_before)
FROM tournament hand_player_statistics
WHERE tournament hand_player_statistics.id_hand = tourney_hand_summary.id_hand
)
= 67500
)

"
As a result, the total number of the player's hands is displayed in the hud.

Please help to correct the statistical indicator so that the correct result is displayed in the hud.

Re: statistical indicator that counts the number

PostPosted: Sat Nov 27, 2021 12:10 pm
by Flag_Hippo
Unfortunately I don't know of a method to achieve that.