The problem is that I have a table in which I have multiple rows like this:
Name Container DateOrder HourOrder
Test1 | Container1 | 04-21-2015 | 11:00
Test1 | Container2 | 04-22-2015 | 16:00
Test2 | Container2 | 04-15-2015 | 01:00
Test3 | Container3 | 04-15-2015 | 15:00
I need to do a report by Name, dates and containers... how can I do that, the result should look like this:
Name | Container | Container2 | DateOrder | DateOrder2 | HourOrder | HourOrder2
Test1 | Container1 | Container2 | 04-21-2015 | 04-22-2015 | 11:00 | 16:00
Test2 | Container2 | | 04-15-2015 | | 01:00
Test3 | Container3 | | 04-15-2015 | | 15:00
Also I need to know which date is from which container, for example the Container1 the date is DaterOrder1, Any suggest?