I'm trying to create the following Update Query: [CODE]UPDATE Book1 INNER JOIN Products ON Book1.jhlkj = Products.Vendor_Item_Code SET Book1.asdfsda1 = [Products].[UPC];
[/CODE]
Basically, I'm looking to update the UPC codes in a table. When I do, my values over 12 characters, formatted as text, change to Scientific notation, even thought the field being update is also data type, TEXT. I have even tried to use a leading ' in front of the codes. It is not displaying as scientific notation, the actual value in the field shows as scientific notation. And of course, I'm losing a character which gets rounded.
What can I do to keep my formatting?