Hi - I'm new to powerapps (not a developer at all 😄 ). I started creating a powerapp based upon a form which is based upon a sharepoint list (let's call it List1). The fields in this list are either free text, or have options to select that are hardcoded from the (list1) sharepoint list. There is only one field (let's call it teams) that has no values hardcoded and would require values from another list (this is because the values fluctuate often, and we have a single source of truth for these values). Let's say these values are in a separate list (list2).
I am able to pull the values from list2 by doing the following:
Items Property : [@'list2 name']
This enables the user to multi select all values from this list. This is exactly what I want to achieve.
I created a button that "OnSelect" will SubmitForm(Form1). All of the values the user entered are pushed to list1, except the values the user entered from the teams field (which is where the values are dynamically populated from list2).
What am I missing here? I'm assuming there is something that is not linking the data from list2 when clicking the Submit button? Or is it something to do with the "list2" data type not being some kind of "Choice" but instead is plaintext?