Hi . I have found in repository/statistics the stat that calculates VPP for FL on PS . It says for 6max and for 10max.
With 10max its working fine , but with 6max it does not work at all .
Do you know something abot it , why ?
Thanks .
Moderator: Moderators
sum(if[(
holdem_limit.limit_name = '$0.02/$0.04' OR
holdem_limit.limit_name = '$0.05/$0.10' OR
holdem_limit.limit_name = '$0.10/$0.20' OR
holdem_limit.limit_name = '$0.25/$0.50' OR
holdem_limit.limit_name = '$0.50/$1' OR
holdem_limit.limit_name = '$1/$2') And
holdem_hand_summary.amt_rake >= .40 OR
holdem_hand_summary.amt_rake >= 1, 1, 0] +
if[(
holdem_limit.limit_name = '$0.02/$0.04 (6 max)' OR
holdem_limit.limit_name = '$0.05/$0.10 (6 max)' OR
holdem_limit.limit_name = '$0.10/$0.20 (6 max)' OR
holdem_limit.limit_name = '$0.25/$0.50 (6 max)' OR
holdem_limit.limit_name = '$0.50/$1 (6 max)' OR
holdem_limit.limit_name = '$1/$2 (6 max)' OR
holdem_limit.limit_name = '$2/$4 (6 max)' OR
holdem_limit.limit_name = '$3/$6 (6 max)' OR
holdem_limit.limit_name = '$5/$10 (6 max)' OR
holdem_limit.limit_name = '$10/$20 (6 max)' OR
holdem_limit.limit_name = '$30/$60 (6 max)' OR
holdem_limit.limit_name = '$50/$100 (6 max)' OR
holdem_limit.limit_name = '$100/$200 (6 max)' OR
holdem_limit.limit_name = '$200/$400 (6 max)' OR
holdem_limit.limit_name = '$500/$1000 (6 max)' OR
holdem_limit.limit_name = '$1000/$2000 (6 max)') AND
holdem_hand_summary.amt_rake >= 2 OR
holdem_hand_summary.amt_rake >= 3, 1, 0] +
if[holdem_hand_summary.amt_rake >= 5, 1, 0])
WhiteRider wrote:Sorry it took me so long to get back to you..
There isn't a generic flag for 6 max tables (I was thinking that you were separating NL and limit tables), but you could do the column like this:
sum(if[(
holdem_limit.limit_name NOT LIKE '%max)' ) And
holdem_hand_summary.amt_rake >= .40 OR
holdem_hand_summary.amt_rake >= 1, 1, 0] +
if[(
holdem_limit.limit_name LIKE '%(6 max)' ) AND
holdem_hand_summary.amt_rake >= 2 OR
holdem_hand_summary.amt_rake >= 3, 1, 0] +
if[holdem_hand_summary.amt_rake >= 5, 1, 0])
sum(if[( holdem_limit.limit_name NOT LIKE '%max)' ) And holdem_hand_summary.amt_rake >= .40 OR holdem_hand_summary.amt_rake >= 1, 1, 0] + if[( holdem_limit.limit_name LIKE '%(6 max)' ) AND holdem_hand_summary.amt_rake >= 2 OR holdem_hand_summary.amt_rake >= 3, 1, 0] + if[holdem_hand_summary.amt_rake >= 5, 1, 0])
WhiteRider wrote:I copied that from my column and it validates for me, it's probably to do with the way it's laid out - try this:
- Code: Select all
sum(if[( holdem_limit.limit_name NOT LIKE '%max)' ) And holdem_hand_summary.amt_rake >= .40 OR holdem_hand_summary.amt_rake >= 1, 1, 0] + if[( holdem_limit.limit_name LIKE '%(6 max)' ) AND holdem_hand_summary.amt_rake >= 2 OR holdem_hand_summary.amt_rake >= 3, 1, 0] + if[holdem_hand_summary.amt_rake >= 5, 1, 0])
This is exactly the same, but with the linebreaks taken out.
Users browsing this forum: No registered users and 37 guests