G
Guest
I have an update query where I am trying to remove the '.' out of the version
number and populating a numeric field. On execution I get a type conversion
error which I assume is because I am trying to populate a numeric filed with
a string field.
Actual_release_numeric - is of Numeric data Type.
Actual_Release_Version - is Text data Type.
UPDATE Combined SET Combined.Actual_Release_Numeric =
Replace([Actual_Release_Version],'.','')
WHERE Combined.Actual_Release_Version Is Not Null;
Any help to get this working would be appreciated.
number and populating a numeric field. On execution I get a type conversion
error which I assume is because I am trying to populate a numeric filed with
a string field.
Actual_release_numeric - is of Numeric data Type.
Actual_Release_Version - is Text data Type.
UPDATE Combined SET Combined.Actual_Release_Numeric =
Replace([Actual_Release_Version],'.','')
WHERE Combined.Actual_Release_Version Is Not Null;
Any help to get this working would be appreciated.