I'm having troubles to aggregate differents shops by date and SKU.
My sample data is like this:
Date SKU Quantity Price
2010/01/01 52144 1 4.00
2010/01/01 87548 5 0.50
2010/01/01 47852 3 1.99
2010/01/01 52144 4 3.80
2010/01/02 87548 1 0.55
And I'm trying to use the function agreggate to sty like this:
Date SKU Quantity Price
2010/01/01 52144 5 3.80
2010/01/01 87548 5 0.50
2010/01/01 47852 3 1.99
2010/01/02 87548 1 0.55
Thanks!