- Code: Select all
sum(if[cash_hand_player_statistics.position = 8 AND cash_hand_player_statistics.flg_blind_def_opp AND cash_hand_summary.str_aggressors_p NOT LIKE '89%', 1, 0])
My goal is to:
1) situations where player was in position 8 ( BB )
2) where he had the opportunity to defend his blind during a steal attempt (from CO, BTN, SB )
3) where the stealer was either CO or BTN
I don't see anything wrong with my formula,
but it gives back 0 on every single player while it sometimes should be higher.
Could someone please give me some feedback on what I'm doing wrong?
Note: I know there are easier solutions for this particular situation by using the Fold to LP Steal stat and filtering on position, but I would like to make the "formula-type" of solution, as attempted above. It's also part of my learning process in building stats since I'm new.