by kraada » Fri May 04, 2012 2:35 pm
You'll actually want a different style of report then.
Create a different Player report that just displays yourself (keep Filter on Active Player on), and add the following text to the blue Filters area:
cash_hand_player_statistics.id_hand in (SELECT chps.id_hand from cash_hand_player_statistics chps, cache_cache cc where chps.id_player = cc.id_player group by chps.id_player, cc.id_player HAVING ((( (CASE WHEN ( (sum(cc.cnt_hands) - sum(cc.cnt_walks))) <> 0 THEN ((sum(cc.cnt_vpip) * 1.0 )/( (sum(cc.cnt_hands) - sum(cc.cnt_walks)))) ELSE 0 END) ) * 100) BETWEEN X and Y)
Change X and Y to be the VPIP range you want for your opponents in this case BETWEEN 30 and 50 will let you see what you want.