// When the Save button is clicked, collect data for each line item into the collection
Collect(
colLineItemsUpdates, // Collection to store line items
{
Vendor: txt_Vendor.Value, // Text input for Vendor
'Item ': txt_Item.Value, // Text input for Item
Description: txt_Description.Value, // Text input for Description
Quantity: num_Input_Quantity.Value, // Text input for Quantity, convert to number using Value()
Price: num_Input_Price.Value // Text input for Price, convert to number using Value()
}
);
After Applying this formula I added two rows and added some entries in it, but only second row data is captured in collection as you see in image below and ID's are also created in another row of collection.
When I click on save button only record is generated in collection with ID but columns didn't contain any data.
the ID column you are seeing in this related to SharePoint List Items in which I am storing this table data.
This how my table looks like now: