What if i just done this, the expression for cnt_f_overbet is:
sum(if[cash_hand_player_statistics.val_f_bet_made_pct > 100, 1, 0])
so if i just change the greater than sign after percent to equals and have this
sum(if[cash_hand_player_statistics.val_f_bet_made_pct = 100, 1, 0])
What will the expression for the other colums be? Say i duplicate cnt_f_ovgerbet_opp, what do i adjust here?
sum(if[cash_hand_player_statistics.flg_f_open_opp and cash_hand_player_statistics.amt_f_effective_stack > cash_hand_summary.amt_pot_f, 1, 0])
When i made the overbet stat i just copied and pasted in the info that kraada gave me, he wrote this:
"for cnt_f_overbet: sum(if[cash_hand_player_statistics.val_f_bet_made_pct > 100, 1, 0])
for cnt_f_overbet_opp: sum(if[cash_hand_player_statistics.flg_f_open_opp and cash_hand_player_statistics.amt_f_effective_stack > cash_hand_summary.amt_pot_f, 1, 0])
We need a specific opportunity column to catch those cases where the effective stack is less than the size of the pot.
To make turn and river versions change _f_ to _t_ and _r_ and to make a total just add all of the various columns up."
And once i had that i just change the ltter to make each one fro different streets. Sorry about all this but i'm useless at making stats