I am trying to run an update query and i get the following error: The parameter values are too large. The total length of all the values entered for the parameters cannot exceed 1,024 characters.
The field is a memo field and it is just updating the other related records memo field also.
if i copy and paste from the form to the table itself there is no error. here is the sql:
UPDATE tblLCHDR SET tblLCHDR.ShippingMarks = [forms]![frmlc]![shippingmarks]
WHERE (((tblLCHDR.LCNO)=[forms]![frmlc]![lcno]));
also the field only has 467 characters in it. I found that by making a temp field on the form and made it = len([shippingmarks])
thanks
The field is a memo field and it is just updating the other related records memo field also.
if i copy and paste from the form to the table itself there is no error. here is the sql:
UPDATE tblLCHDR SET tblLCHDR.ShippingMarks = [forms]![frmlc]![shippingmarks]
WHERE (((tblLCHDR.LCNO)=[forms]![frmlc]![lcno]));
also the field only has 467 characters in it. I found that by making a temp field on the form and made it = len([shippingmarks])
thanks