Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Memo field entry only prints 255 characters in report 1

Status
Not open for further replies.

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;
 
Group By queries will truncate memo fields at 255 characters. Why are you even using Group By in the query since you are not aggregating anything?

Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
 
Well, I am not sure why I had it as group by. There is not one good reason that I can come up with. Anyway, I removed the group by and it works perfectly now. I have this same problem with a few reports on another database and I will check that as well. I never had a clue that anything like this could affect the memo field. Thanks for opening my eyes.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top