P
PPCO
I have a report group with three items in it. Wondering if there is a way to
customize which item shows first? Thanks!
customize which item shows first? Thanks!
I have a report group with three items in it. Wondering if there is a wayto
customize which item shows first? Thanks!
vvariety said:I have a report group with three items in it. Wondering if there is a way to
customize which item shows first? Thanks!
I have done the same thing in a query by setting a field A, B, C...
etc so that the items on the report can easily be groupped. For
example
I have a Query where it describes type of animal, Bird, Cat, Dog, and
I want the dog to appear first the bird to appear second and the cat
to appear last. With in the query I add a calculated field called
Sort and set the calculation up to be iif([type]='dog','A',iif([type]
='bird','B','C') and use this field to sort and group my report.
Hope that helps.