For some reason MS Word doesn't seem to support merging data from Access if the Access field type is binary. Anyone know of a workaround?
Access doesn't give binary as a field type when you create a table, but if you run a Make-Table query with one of the values containing Null, the data type for that field is created as binary.
Run this SQL string in Access to see what I mean.
Now put a value in the BinaryValue field (and fill a couple other rows if you like) and then try to attach it to a Word MailMerge document. The merge engine recognizes the field, but won't use any of the data.
Any thoughts? Thanks! -- Mike
Access doesn't give binary as a field type when you create a table, but if you run a Make-Table query with one of the values containing Null, the data type for that field is created as binary.
Run this SQL string in Access to see what I mean.
Code:
SELECT 1 AS ID, Null AS BinaryValue, "Sample" AS [Text] INTO tblTest;
Now put a value in the BinaryValue field (and fill a couple other rows if you like) and then try to attach it to a Word MailMerge document. The merge engine recognizes the field, but won't use any of the data.
Any thoughts? Thanks! -- Mike