Hi,
Have a power app that I am working on that is an employee store, I have it setup so when an item is added to the cart, it is added to a collection, colCart. I am trying to set up the submit order section of the app and I am having a hard time getting the patch to work.
I am trying to set it up so that a row on the dataverse table has the employee's name, email address, total cost and cart items.
Any advice would be greatly appreciated. Thanks

Patch('AWC Transactions',
Defaults('AWC Transactions'),
{
Name:TextInputName,
'Email Address':TextInputEmail,
Items:colCart.ProductName,
Total: LabelTotalAmount
}
);