Solved: problem with access 2003 calculation comparing values I have an Access 2003 table (Table1) with four fields:
Amount (number, single format, 3 decimal places)
Add (number, single format, 3 decimal places)
Calc (number, single format, 3 decimal places)
Test (number, single format, 3 decimal places)
There is one record:
Amount=40
Add=1.021
Calc=40.84
Test=
The first query updates the "Test" field by [Amount]*[Add] with the result that the test field now contains the value 40.84
Then I run a query to find records where [Test]<>[Calc] and it returns the record even though the values in the two fields are equal.
Help! Please??? |