I'm looking to create a list-field that a user can input a list of variables.
The list will then be stored in a multi-line variable in SharePoint separated by a delimiter.
An example would be an input of:
Output: Apples;Bananas;Cherries.
Thank you for your time.
This is totally possible using a Collection and the Concat function in PowerApps.
OnSelect
property set to Collect(colList, TextInput1.Text);
Set(varReset, true);
Set(varReset, false);
Set(varReset, true);
Reset
property set to varReset
Text
property set to Concat(colList, Value, ";"
From there, just Patch
or SubmitForm
the Label into a Sharepoint Column!