I have two question:
1. I could not make "Hands in K" work in PT4. I tried to copy the format expression from PT4:
if( (this>999 , format( '{1}k' , format_number((this / 1000) , 1 , false , false))) , this )
*(PT4 automatically change to "this" if it is the same as the value expression right?)
And it does not work. Why and how to change it?
2. I want my HUD to look more organized. In order to do so I want 100 to be seen as 99, and that the "space" for each stat on the HUD will be on the same size(based on 2 digits). I found this thread:
https://www.pokertracker.com/forums/vie ... 18&t=30233
Which after some tweaking they ended up with this expression in order to do such a thing:
- Code: Select all
if ( ((cnt_vpip / cnt_hands) * 100) > 99.5, '99', (format( '{1}{2}', if ( ((cnt_vpip / cnt_hands) * 100) < 9.5, ' ', ''), format_number( ((cnt_vpip / cnt_hands) * 100), 0, false, false) ) ))
*((cnt_vpip / cnt_hands) * 100) is an example of course).
Should it work in PT4 the same way or should I change anything?
Also if I add this expression, would the stat keep being "decimal percent" formatted or it's either this or that?
3. What is "Summary type"?
Thanks.