Hi,
Just want to have your opinion on how to resolve the issue, i have Text field to upload in my Table "Short Text", and i need to update the field SI_ICXX to remove spaces, however, i think it automatically converted to Numbers.
Sample SI field(Short Text):12333 02 01 i need to update as 123330201.
Error in the upload is Type Conversion Failure
Just want to have your opinion on how to resolve the issue, i have Text field to upload in my Table "Short Text", and i need to update the field SI_ICXX to remove spaces, however, i think it automatically converted to Numbers.
Sample SI field(Short Text):12333 02 01 i need to update as 123330201.
Error in the upload is Type Conversion Failure
Code:
Upd_SI_field = "UPDATE MM_Input SET MM_Input.SI_ICXX =(REPLACE(MM_Input.SI_ICXX,"" "",""""))"
DoCmd.SetWarnings False
DoCmd.RunSQL Upd_SI_field
DoCmd.SetWarnings True