M
MJ
I am at a loss for this issues. Getting some bad data in, one field in a
small subset of entire table should be decimal but coming in as integer. I
know that I can covert it simply by dividing by 100 and I have been able to
do a Make Table query.
Is there a simple way to do this within the existing table WITHOUT changing
the field name? I tried using an Update query, but errors out...
UPDATE [Table1_OptEditErrors] SET ([Table1_OptEditErrors].ClmAmt/100) AS
ClmAmt
WHERE ((([Table1_OptEditErrors].Text) Like "Subscriber DOB*") AND
(([Table1_OptEditErrors].[Error Code])="SIT1") AND
(([Table1_OptEditErrors].RespDept)="DEPT1"));
"ClmAmt" is the field containing the bad data and I would like to retain the
corrected data in the same field. Please keep in mind that this is only ~3%
of the data, so there is a lot of good data present.
Anyone have any good suggestions on a simple solution?
small subset of entire table should be decimal but coming in as integer. I
know that I can covert it simply by dividing by 100 and I have been able to
do a Make Table query.
Is there a simple way to do this within the existing table WITHOUT changing
the field name? I tried using an Update query, but errors out...
UPDATE [Table1_OptEditErrors] SET ([Table1_OptEditErrors].ClmAmt/100) AS
ClmAmt
WHERE ((([Table1_OptEditErrors].Text) Like "Subscriber DOB*") AND
(([Table1_OptEditErrors].[Error Code])="SIT1") AND
(([Table1_OptEditErrors].RespDept)="DEPT1"));
"ClmAmt" is the field containing the bad data and I would like to retain the
corrected data in the same field. Please keep in mind that this is only ~3%
of the data, so there is a lot of good data present.
Anyone have any good suggestions on a simple solution?