Hi,
I have a SPO with 8 different columns.
I want to patch a text to the same row but different columns.
there is 8 TextInputs every textinput should patch to same row but different column.

Hi,
I have a SPO with 8 different columns.
I want to patch a text to the same row but different columns.
there is 8 TextInputs every textinput should patch to same row but different column.
I may be missing your question, but a Patch() function does this simply through the record referenced in the arguments:
Patch(mySPList,
Defaults(mySPList), // to create a new record
{
Column1Name: TextInput1.Text,
Column2Name: TextInput2.Text,
Column3Name: TextInput3.Text,
Column4Name: TextInput4.Text,
Column5Name: TextInput5.Text,
Column6Name: TextInput6.Text,
Column7Name: TextInput7.Text,
Column8Name: TextInput8.Text
}
)This creates one row in the Sharepoint list and populates 8 columns with values.
Is that what you are looking for?
Bryan