houstonbill
Technical User
- Nov 6, 2006
- 92
I did find thread 703-1359243 answered by Dhookom on 4/21/07 that had the same problem that I am having, but my query makeup is different and I can't see why this is happening. My field is set up as memo on the table, and my query that builds the report is based only on that table. I see nothing on this query or the format property for the field that would cause the words to cut off. Below is the SQL that makes up my report:
SELECT Table1.ID, Table1.[Date Opened], Table1.Responsible, Table1.Source, Table1.Issue
FROM Table1
WHERE (((Table1.[Date Closed]) Is Null))
GROUP BY Table1.ID, Table1.[Date Opened], Table1.Responsible, Table1.Source, Table1.Issue;
SELECT Table1.ID, Table1.[Date Opened], Table1.Responsible, Table1.Source, Table1.Issue
FROM Table1
WHERE (((Table1.[Date Closed]) Is Null))
GROUP BY Table1.ID, Table1.[Date Opened], Table1.Responsible, Table1.Source, Table1.Issue;