Please Help
I am trying to patch values into SharePoint list, some of these values are from the collection called colMenu
I want the collection values to be all in one row, the one now is patching the collection values based on added rows


I want them all to be in one row separated by comma or whatever like this
column Description:Test1,test2,test3
column quantity:1,1,1
Column currency,OMR, OMR, OMR and so on....
the patch function look like this
ForAll(
Gallery1_1.AllItems,
Patch(
'Purchase Request',
Defaults('Purchase Request'),
{
'Application Date': DataCardValue3.SelectedDate,
Title: DataCardValue10.Text,
'Purchase Title': DataCardValue5.Text,
Purpose: DataCardValue6.Text,
'Type ': DataCardValue4.Selected,
'Payment Terms': DataCardValue2.Text,
Justification: DataCardValue1.Text,
'Budget Status': DataCardValue7.Selected,
'Description/Model No': TextInput1_1.Text,
Currency: [@Dropdown2_1].Selected.Value,
Quantity: Value(TextInput2_1.Text),
'Unit Price': Value(TextInput3_2.Text),
'Total Price': Value(TextInput3_3.Text)
}
)
);