Hello again.
I changed a statistic that "X" is displayed when the rival had less than 10 opportunities, works perfectly thanks to your help.
You can do the same with a Boolean value?
For example, I want it throw me a true value "1" when the opponent has less than 8% of 3bet in BTN, and a false value "0" If you have more than 8%. I do it in the following way in format "number":
- Code: Select all
If ( (cnt_p_3bet_btn / cnt_p_3bet_opp_btn) * 100 <= 8.00, 1, 0 )
This expression works well, but what they really care about me is the number of opportunities within the Boolean condition. I want to say, a value of "1" throw me than if the 8% of 3bet condition is met but if rival had less than 10 opportunities I want it throw a value of "0" since the data are not reliable.
How would you put in the expression a condition for opportunities?
I did so in the expression of the statistics but does not accept it, maybe I can directly modify each column? :
- Code: Select all
If( cnt_p_3bet_opp_btn <= 10 ( (cnt_p_3bet_btn / cnt_p_3bet_opp_btn) * 100 <= 8.00, 1, 0 ) )
I spent the day reviewing the tutorials that left me in a previous link but I found nothing to help me.
Greetings and thanks again.