Ascend by a memo type field

S

Samuel

Hi

I would like to ascend by a Memo field but it doesn't seem to work

Thank you
Samuel
 
J

John Spencer

You can't sort memo fields.

What you can do is sort by the first part of the memo field.

Add a calculated field to your query and use it for sorting. Keep the
memo field for display purposes.

Field: MemoSort: Left([MemoField],200)
Sort : Ascending

'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
'====================================================
 
A

a a r o n . k e m p f

SQL Server lets you sort a lot more than that ;)

-Aaron




You can't sort memo fields.

What you can do is sort by the first part of the memo field.

Add a calculated field to your query and use it for sorting.  Keep the
memo field for display purposes.

Field: MemoSort: Left([MemoField],200)
Sort : Ascending

'====================================================
  John Spencer
  Access MVP 2002-2005, 2007-2008
  The Hilltop Institute
  University of Maryland Baltimore County
'====================================================


I would like to ascend by a Memo field but it doesn't seem to work
Thank you
Samuel- Hide quoted text -

- Show quoted text -
 
Top