I have the following columns:
cnt_p_2bet_rfi_2_5bb:
sum(if[cash_hand_player_statistics.position between 0 and 7 and cash_hand_player_statistics.amt_p_raise_made / amt_bb = 2.5 and cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.flg_p_open_opp, 1, 0])
cnt_p_raise_first_in_no_blinds:
sum(if[cash_hand_player_statistics.position between 0 and 7 and cash_hand_player_statistics.flg_p_first_raise, 1, 0])
And the following stat:
RFI 2.5bb:
(cnt_p_2bet_rfi_2_5bb / cnt_p_raise_first_in_no_blinds) * 100
I can add the stat to reports but not to my HUD. The stat doesn't appear on the list. Why is that? How can I fix it?
Thanks!