Hi All,
I am having trouble coming up with a way to group detail rows together and sort those groups based on the value from one row in the detail records.
Example:
Code:
order z_row timefrom showtime
-----------------------------------
1 1 10:15 NULL
1 2 NULL 11:30
2 1 10:00 NULL
2 2 NULL 11:30
3 1 1:00 NULL
Each row represents a detail to an order item record. The database is a multivalue universe database, so all key associations are made by a key and a row id.
I need to group all order detail items and sort based on the timefrom which comes from one row in the order details.
Example output:
Code:
order timefrom showtime
--------------------------
2 10:00 11:30
1 10:15 11:30
3 1:00 (none)
Any ideas?
Note: Using Crystal 8.0.
Thanks,
Jeremy