Hi. I have a number of production records from many machines, with many product codes. The table gets populated chronologically with data from all machines. example:
[time]=5:00; [Machine]=1; [Product]=ABC; [quantity]=5
[time]=5:01; [Machine]=2; [Product]=ABC; [quantity]=5
[time]=5:02; [Machine]=3; [Product]=ABC; [quantity]=5
[time]=5:04; [Machine]=2; [Product]=ABC; [quantity]=5
[time]=5:05; [Machine]=4; [Product]=ABC; [quantity]=5
My current report shows:
Group by [Machine]
Group by [Product]
[quantity] data is summarized and reported/printed at this level, and I show First([time]) for the "Group by [Product]" to show when the production run for [Product]=abc started on [machine]=1. The PROBLEM is that I want to see the [Product] group sorted by First([time]), but currently it is sorted alphabetically by [Product] instead.
How can I sort the "Group by [Product]" by First([Time]) of the "Group by [Product]"??
Any help is greatly appreciated!
[time]=5:00; [Machine]=1; [Product]=ABC; [quantity]=5
[time]=5:01; [Machine]=2; [Product]=ABC; [quantity]=5
[time]=5:02; [Machine]=3; [Product]=ABC; [quantity]=5
[time]=5:04; [Machine]=2; [Product]=ABC; [quantity]=5
[time]=5:05; [Machine]=4; [Product]=ABC; [quantity]=5
My current report shows:
Group by [Machine]
Group by [Product]
[quantity] data is summarized and reported/printed at this level, and I show First([time]) for the "Group by [Product]" to show when the production run for [Product]=abc started on [machine]=1. The PROBLEM is that I want to see the [Product] group sorted by First([time]), but currently it is sorted alphabetically by [Product] instead.
How can I sort the "Group by [Product]" by First([Time]) of the "Group by [Product]"??
Any help is greatly appreciated!