Hello, everyone.
I got a problem patching my data from collection to Sharepoint list. Is it possible to patch multiple rows of collection to Sharepoint list as an one Item?

Hello, everyone.
I got a problem patching my data from collection to Sharepoint list. Is it possible to patch multiple rows of collection to Sharepoint list as an one Item?
Hi @Minjinzz ,
I can only think of the hard-coded approach. Formula like this(assume that the collection has three column called "ColumnA", "ColumnB" and "ColumnC"):
Patch(listname,Defaults(listname),
{
Column1:First(test).ColumnA
Column2:First(test).ColumnB
Column3:First(test).ColumnC
Column4:Last(FirstN(test,2)).ColumnA
Column5:Last(FirstN(test,2)).ColumnB
Column6:Last(FirstN(test,2)).ColumnC
Column7:Last(FirstN(test,3)).ColumnA
Column8:Last(FirstN(test,3)).ColumnB
Column9:Last(FirstN(test,3)).ColumnC
...
}
)
Best regards,
Allen