If you use the Sorting And Grouping dialog (View menu in report design), you
have the option to sort Descending.
If you have already done that, but the report is not sorting correctly,
there are a couple of possible causes:
a) The field is a Decimal data type, and Access is incapable of sorting that
type correctly. Details in:
Incorrect Sorting (Decimal fields)
at:
http://allenbrowne.com/bug-08.html
b) The field is a calculated field, and Access is misunderstanding the data
type. Details in:
Calculated fields misinterpreted
at:
http://allenbrowne.com/ser-45.html
Either way, the solution is probably to typecast the field in your query,
e.g.:
SELECT CCur(Nz(Sum([Amount]),0)) As SumOfAmount ...
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
kontra said:
My report is grouped by date and I am trying to sort the records
Descending
by sales amount with in the group, however my negatives show up on the
top,
is there anyway to drop them to the bottom?
Thanks