I'm importing a text file containing a field with numbers up to the thousandth decimal as a number field. I'm then running and update query to fix the SSNs (preceding zeros) and subtract 500 from the number field.
UPDATE CODImportFile
SET CODImportFile.[Original SSN] = Format([Original SSN],"000000000")
, CODImportFile.[Lifetime Eligibility Used] = [Lifetime Eligibility Used]-500;
I have no clue why, but some of the results look like this:
Original:500.016
Result: 1.60000000000196E-02
Any idea what could be causing this?