Hi, in my Customers table I am converting certain fields into a new created field.<br><br>I created a select query that identifies the records and meets my criteria. I need to move/append them from the [Last Name] field to the [Company Name] field. <br><br><br>SELECT Customers.[First Name], Customers.[Last Name], Customers.CustomerID, Customers.[Company Name]<br>FROM Customers<br>WHERE (((Customers.[First Name]) Is Null));<br><br>Tried to change this to an append query but wouldn't work?<br><br>INSERT INTO Customers ( [Company Name] )<br>SELECT Customers.[Last Name]<br>FROM Customers<br>WHERE (((Customers.[First Name]) Is Null));<br><br>I'm getting the <br>Microsoft Access set 0 field(s) to Null due to a type conversion failure, and it didn't add 1502 record(s) to the table due to key violations, 0 record to all the other violations,...? help thanks<br><br><br><br><br><br><br>