I have a PowerApps form with a checkbox field, the idea is to save whatever is selected on the checkbox field.
Here is an image of that Checkbox
And here is the code I used in the checkbox Onselect property. Selected values are stored in a collection.
If(
Checkbox2.Value = true,
Collect(CheckboxTextValues, Checkbox2.Text),
Remove(CheckboxTextValues, LookUp(CheckboxTextValues, Value = Checkbox2.Text))
)
Then before submitting, I created a preview form for verification of their entries. As you can see, the selected entries above are reflected on the image below. The data from the collection is then called in a text input like the one below.
Here is the code I used to call the data from the collection to the Default property of the text input field above.
Concat(CheckboxTextValues, Value & ", ")
Below is the column from my SharePoint list where the selected values should be saved. As you can see, only one value is being saved ("Network User ID") which is not part of the selected values.
My question is, how do I save the selected values from the input field going to the SharePoint list column?
Thank you in advance.
Neil