I could have sworn that Crystal Reports used to sort strings beginning with a space to the bottom. For example, the strings " Amsterdam", "Belfast", and "Cancun" would be sorted as:

Belfast
Cancun
 Amsterdam

This thread seems to confirm that.

However, now I'm using CR 2008 SP3 and it's being sorted to the top, as:

 Amsterdam
Belfast
Cancun

I have tried all sorts of special and control characters and everything is sorting to the top. What am I missing?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

How about inserting another sorting level, using a formula CitySort:

If {City} = " Amsterdam" Then 1 Else 0
link|improve this answer
That would work. What I ended up doing was just prepending "zzz" to the ones I wanted sorted to the bottom and then display the original field to avoid adding another group level. My main concern, though, was that CR changed the sort order for non-alphanumeric string characters... I have a feeling I've got broken reports floating around now. – Ryan Sep 13 '11 at 15:23
Between XI and 2008, you're thinking? – noa Sep 13 '11 at 15:42
Or between Service Packs for 2008? Who knows, I may be imagining things. – Ryan Sep 13 '11 at 17:13
The new behavior is consistent with ASCII/Unicode: the designers of ASCII placed the space character before the letters and numbers in order to simplify sorting. Crystal's sort is case-insensitive, so it doesn't follow ASCII ordering exactly, but putting a space first is more consistent. For what it's worth, most often I use @ or ! to sort entries to the top of a list and Ω for the bottom. I can't remember whether I've used them in Crystal. – noa Sep 13 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.