ok for #1 use sql toolbox or phpmyadmin update profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Just change the 4,6,7,10 to the member ids you want update separated by a comma as shown. If you get an error it will because you have a prefix like ipb_ or ibf_ or ??? so you will need to add it like this update ibf_profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Always backup database or table profile_portal before making changes...