
Announcements
I have multiple text input boxes that I am trying to concat and patch to a single SP list column. My SP list name is "Course" and the text input boxes are named 'Text Box 1', 'Text Box 2', 'Text Box 3', and 'Text Box 4'.
Is there a way for me to do this?
Patch(Course, {ColumnName:'Text Box 1'.text & 'Text Box 2'.text & etc...})
If you want spaces or commas between them just do another & and add ", " or " " between each of them as well. You could also use the Concatenate function and pass each textbox.text value into it separated by commas. Again if you want commas or spaces just add ", " or " " in between each string.