by ngkwokfai on Tue Nov 01, 2005 2:05 pm
Hi, first post here. You can open players.dbf with access, go to queries, create new query in design view, close the window. switch to sql view (click on the SQL button on the toolbar), enter the follow and hit run (! icon)
UPDATE Players SET OREABILITY = OREABILITY/2
This will reduce all the ratings by half.
If you want to subtract by an amount instead of using percentage, use:
UPDATE Players SET OREABILITY = OREABILITY-30
UPDATE Players SET OREABILITY = 1 WHERE OREABILITY < 1
The second line is used to make all the negatives into 1.
Bryan