A family of Microsoft relational database management systems designed for ease of use.
UPDATE [TableName] SET [FieldName]=Replace([FieldName]," ","")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
In Access I have table and in the table I have a "Short Text" column.
Below is an example of data in the column but I need to run an update query to remove any spaces before, within and after the data.
Could you help me create an update query to do this?
cf4872ab
cf4872wg
cf6259nx
CF4089sK
CF 4380 AW
CF 4380 PW
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
UPDATE [TableName] SET [FieldName]=Replace([FieldName]," ","")
UPDATE YourTable SET YourField = Replace(YourField, " ", ""}