I have the following tables in my database:
Customers -> Orders -> OrderItems -> Items -> Components -> Parts -> Specifications -> Costs, each linked to the next in a 1-M relationship with appropriate FKs.
I have designed a report which displays the records for each order from all 8 tables in a grouped and nicely stepped format right up to specs and costs. But in order for it to make sense to the user, I also need to show summary data on a separate subreport for the total requirement per order of each material in specs. This too I have managed to do nicely enough.
Where I am getting stuck is trying to make a second subreport which will show ALL requirements in detail per order and per item but WITHOUT the components and parts levels. If I exclude these immediate levels, all I get is a totals of each spec whereas I need to show each detail.
Any help will be appreciated.