Question : Access Query truncating Memo Field

I have a simple access query filtering down for the verbiage "*Rapid*" in a field from a table.  When i pull up the table, it does not truncate anything, it displays the entire memo field.  When i run the query though, it truncates that field, i need it to show everything, does anybody know what i'm doing wrong?

Here is the SQL statment, it is the NCTags.Description field being truncated

SELECT DISTINCT NCTags.NCTagID, NCTags.CreateDate, NCTags.Description
FROM NCDiscrepancies INNER JOIN NCTags ON NCDiscrepancies.NCTagID = NCTags.NCTagID
WHERE ((DateValue([NCTags].[createDate])>=Date()-7) AND ((NCTags.Description) Like "*Rapid*"));

Answer : Access Query truncating Memo Field

I think the equivalent 'group by' is..

SELECT NCTags.NCTagID, NCTags.CreateDate, first(NCTags.Description) as TagsDesc
FROM NCDiscrepancies INNER JOIN NCTags ON NCDiscrepancies.NCTagID = NCTags.NCTagID
WHERE (DateValue([NCTags].[createDate])>=Date()-7) AND (NCTags.Description Like "*Rapid*")
Group By  NCTags.NCTagID, NCTags.CreateDate;
Random Solutions  
 
programming4us programming4us