S sueviolet Registered User. Local time Today, 00:41 Joined May 31, 2002 Messages 127 Nov 26, 2002 #1 I have a field which contains positive numeric values (122) I need to change all the records in this field so they are negative (-122) How do I do this?
I have a field which contains positive numeric values (122) I need to change all the records in this field so they are negative (-122) How do I do this?
Nouba Registered User. Local time Today, 01:41 Joined Oct 20, 2002 Messages 145 Nov 26, 2002 #3 Try an update query Code: UPDATE theTablename SET [aNumber] = [aNumber] * -1
S sueviolet Registered User. Local time Today, 00:41 Joined May 31, 2002 Messages 127 Nov 26, 2002 #4 Thankyou both - worked fine