@victorcp Thanks. Apologies, I have a little try yesterday and here is where I go to.
From articles I have read, I can have a sharepoint list - Shopping Cart Orders - I have product, ID & OrderID and then I have a second sharepoint list - Shopping Cart Order Items - Where I have more columns and I should be bringing in the OrderID column.


Not sure if I need this second list but that's what I have read online.
Code is:
Refresh('Shopping Cart Orders');Set(varOrderID,Last('Shopping Cart Orders').ID+1);ForAll(Basket,Patch('Shopping Cart Orders',Defaults('Shopping Cart Orders'),{Title:Product},{OrderID:varOrderID}));
Patch('Shopping Cart Order Items',
ForAll(Basket As _item,
{
ID:_item.ProductID,
Title:_item.Product,
SalesQuantity:_item.SalesQuantity,
PointsQuantity:_item.PointsQuantity,
Price:_item.Price
}))
Not sure how I get the OrderID through to the Shopping Cart Order Items list?
Any ideas?
Thanks
Ross