I have a [Field1] which has several thousand records with numbers in each
record's field. I want to multiply each number by .9333333 and update the
number in [Field1].
How do I do this?
Make a backup of your database just in case.
ASSUMING that this is a Number... Single, Number... Double, Number... Decimal
or Currency datatype field, which can all handle decimal places (Currency can
only handle 4):
Create a Query based on your table.
Change it to an Update query using the query type icon on the toolbar or the
Query menu option.
A new row will appear in the query grid labeled "Update To".
Under Field1 on this row type
[Field1] * .9333333
Run the query by clicking the ! icon.
Check the results by looking in the table or in a form bound to the table...
should be done.
If it's the default Number... Long Integer field, the result will also be
rounded to the nearest whole number, which might not be what you want!