Page 1 of 1

Over al board

PostPosted: Sun Apr 03, 2022 10:25 am
by plukhead
Hola necesito una expresión para turns over al board es posible. Gracias

Re: Over al board

PostPosted: Sun Apr 03, 2022 1:38 pm
by WhiteRider
Hello I need an expression to turns over the board is it possible. Thanks

I think you want to filter for when the turn card is higher than any card on the flop?

If so, you can do that with an expression filter in My Reports, like this:

((cash_hand_summary.card_4 - 1) % 13 > (cash_hand_summary.card_1 - 1) % 13) and ((cash_hand_summary.card_4 - 1) % 13 > (cash_hand_summary.card_2 - 1) % 13) and ((cash_hand_summary.card_4 - 1) % 13 > (cash_hand_summary.card_3 - 1) % 13)

This specifies that the rank of card 4 (the turn card) is higher than the rank of card 1, and of card 2, and of card 3.

highfalutin