Hopefully someone can help -- this is for Crystal 8.
Rather than explain, I'll give you the following scenario...The report design would look like this:
Group 1:
SandwichName
Details:
IngredientNumber, IngredientName, OrderBy
So...it could look like this when viewed with data:
Group:
ABT Sandwich
Details:
1, Bread, Asc
2, Avocado, Asc
3, Bacon, Asc
4, Tomato, Asc
5, Bread, Asc
Group:
BLT Sandwich
Details:
1, Bread, Asc
2, Bacon, Asc
3, Lettuce, Asc
4, Tomato, Asc
5, Bread, Asc
The detail section shows in order by the IngredientNumber...The third column labeled "OrderBy" would tell you how to sort the column (ASC or DESC). So, if it is 'Asc', then sort IngredientNumber in numerical order (1-5). If the ingredients for one group were labeled for 'Desc', then we'd want the IngredientNumber order to be Descending (5-1).
How can this be done?
Rather than explain, I'll give you the following scenario...The report design would look like this:
Group 1:
SandwichName
Details:
IngredientNumber, IngredientName, OrderBy
So...it could look like this when viewed with data:
Group:
ABT Sandwich
Details:
1, Bread, Asc
2, Avocado, Asc
3, Bacon, Asc
4, Tomato, Asc
5, Bread, Asc
Group:
BLT Sandwich
Details:
1, Bread, Asc
2, Bacon, Asc
3, Lettuce, Asc
4, Tomato, Asc
5, Bread, Asc
The detail section shows in order by the IngredientNumber...The third column labeled "OrderBy" would tell you how to sort the column (ASC or DESC). So, if it is 'Asc', then sort IngredientNumber in numerical order (1-5). If the ingredients for one group were labeled for 'Desc', then we'd want the IngredientNumber order to be Descending (5-1).
How can this be done?