Q
Question Boy
I have a simple query
SELECT [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes
FROM [Tbl Contacts]
GROUP BY [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes;
However, it is truncating the content of my memo field Notes. How can I
return the complete field value?
Thanks,
QB
SELECT [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes
FROM [Tbl Contacts]
GROUP BY [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes;
However, it is truncating the content of my memo field Notes. How can I
return the complete field value?
Thanks,
QB