Hi All
I need to copy a SharePoint list item from one SP List to another (identical) SP list
So I am trying is
UpdateContext({Item:LookUp(TestList1,ID=2)});
Patch(TestList2, Defaults(TestList2), Item);
But getting error "Field 'Id' is required"
What, I think, might be happening, is created record (Item) got Id, which is created by system when adding new list item, and it cannot be changed. If thats a case - how do I remove Id value from Item record?
Thanks