Hi,
I have Power App and Let me know how to send the Data in collection of my app to excel online through patch function.
whenever User Submits data it should always go to excel in new rows.
I have attached Excel Table and Collection Data also. Collection Name is "FinalData" and Excel table name is "DataTable".
I have used below Method But its adding only one row of Data in collection. Its not adding all the rows in the collection to excel
Collect(
FinalData,
{
EmployeeID: EmployeeID.Text,
Date: Date.SelectedDate,
Activity: Activity.Text,
OrderNo: OrderNo.Text,
Type: Type.Text,
Description: Description.Text,
Quantity: Quantity.Text,
Hours:Hours.Text,
Status:Status.Text
}
);
Patch(
DataTable,
FinalData
);
Notify("Data sent successfully", NotificationType.Success)
Please help me out on this
My Excel Table
My collection In app