Heh. I tried and it didn't work. Pretty sure that w/e the change I made was wrong.
Could you tell exactly how the code should look like. My trial and error method just didnt work.
Numerator: cnt_p_first_raise_hero_3bet_def_opp
sum(if[cash_hand_player_statistics.flg_p_3bet_def_opp and cash_hand_player_statistics.flg_p_first_raise and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet), 1, 0])
Denominator: cnt_p_first_raise_hero_3bet_opp
sum(if[cash_hand_player_statistics.flg_p_first_raise and exists
(select 1
from cash_hand_player_statistics hero
where hero.id_hand = cash_hand_player_statistics.id_hand
and hero.flg_hero
and hero.flg_p_3bet_opp), 1, 0])
So here, the expression on the first line "cash_hand_player_statistics.flg_p_3bet_def_opp and cash_hand_player_statistics.flg_p_first_raise and exists" and "cash_hand_player_statistics.flg_p_first_raise and exists" is only villain-specific.
So for me to know how villain perceives my overall 3bet in his HUD, it should mean that he was dealt in the hand.
I couldn't find any expression (through browsing other stats) for this.
Help appreciated