On Nov 8, 2007, at 11:44 AM, Rich Shepard wrote: > Yes. Importing itemgetter from operator, and using sorted() > followed by > .reverse() the results are what are needed in the report. You can do the reverse at the same time, if you'd like: sorted(key=blahblahblah, reverse=True) The reverse flag is also available on [].sort(). Adam