I am new to PowerApps and working on my first project which is a submission form.
My PowerApp has a datacard that is a dropdown box which allows for multiple selections, including a selection called "Other (Specify)". Items is set to Choices([@'A101-PE_2'].'Services Requested'). The column in my SP list is set to Choice, allow multiple selections and allow fill in choices.
When "Other (Specify)" is selected, a text input box appears for the user to provide additional description. For the text input, I have Visible set to "Other (Specify)" in DataCardValue2.SelectedItems.Value
I need all of the items selected from the dropdown AND any text entered into the text box to update to my SP list.
For Update, I am using the formula DataCardValue2.SelectedItems and this works in updating SP with all of the selected items, but how do I also include anything entered in the text box?