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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Memo field displays as chinese character in query group by

Status
Not open for further replies.

jeep2001

Programmer
Dec 15, 2005
134
US
OK wierd one here....
I have a table named comments. The comment is contained in a memo field. When I open the table and review the data it looks fine, however, if I query the comments table and group by date, the comment appears as a chinese character followed by a small square character. Anyone ever seen this one before. I changed the field to a text and it was ok...but is this a Billy Gates gotcha!
 
Did you attempt to "Group By" the memo field? Or, have you tried to use "First" on the memo field?

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]
 
If you are grouping by date but not by the memo field then you must be using some aggregate function on the memo field (e.g. FIRST, LAST, MIN, MAX, etc.) Note that memo fields are not stored "in" the table. The table only contains a pointer to the memo and aggregate functions don't work on pointers ... as you have just discovered. For these same reasons you cannot JOIN or GROUP BY a memo field.

[small]No! No! You're not thinking ... you're only being logical.
- Neils Bohr[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top