Hello,
I have a table that retrieves data over a 3 day period on an hourly basis, there are several different machines that work on a specific bottle for a period of time, during the three day period there could be several different bottles go on that machine. I want to show the results of the 1st bottle during the time that they were produced, followed by the results of the 2nd bottle during that time e.g.
Rows ------------------------------------ Columns -------------------------------------
Machine Product Product Start 18/01/2010 18/01/2010 18/01/2010 18/01/2010
Code Date 05:00 06:00 07:00 08:00
1 Beer Bottle 10256 17/01/2010 89 89
07:00
2 Wine Bottle 10376 18/01/2010 14 50
07:00
But mine is looking like this, it retains the previous Bottles data:
Machine Product Product Start 18/01/2010 18/01/2010 18/01/2010 18/01/2010
Code Date 05:00 06:00 07:00 08:00
1 Beer Bottle 10256 17/01/2010 89 89 14 50
07:00
2 Wine Bottle 10376 18/01/2010 89 89 14 50
07:00
I have the row group grouped on Product and the column group group on DateTime.
Can anybody please advice how I can get the report to run like the first example.
Regards, AW