Thanks for the quick reply! I infer from your answer that this removal of
functionality was a conscious, though apparently undocumented, decision?
Armen Stein said:
Are you sure you can't store your data in a text field instead?
My data is actually stored in a postgresql database to which I connect via
ODBC. There it is stored in fields with the postgresql data type "text". I
believe the Postgresql ODBC driver can be configured to import these fields
as either Text or Memo, but the problem is that some of them contain long
entries, so that if I import them all as Text then they get truncated.
I could, in theory, change the data types of the postgres fields that I want
to be sortable to be say varchar(255) which I guess would then get imported
as Text and be sortable, but that would involve a significant amount of work,
since there are a lot of those fields.
Thanks for the workaround, anyway.